mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-18 22:59:38 +02:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import { sharedThing } from "fixture-sdk";
|
|
import type { SharedType } from "fixture-sdk";
|
|
|
|
export function betaUse(input: SharedType) {
|
|
return `${sharedThing()}:${input.value}`;
|
|
}
|