mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 08:01:35 +00:00
72109b01d7
* hide resource * more customizations * disable tooltips globally & hide other elemetns * hide variable picker in autogenerated ui too * change to disableX and context * all * all * all * all * all * all * fix * fix * fix --------- Co-authored-by: smuun <silas@athenaintelligence.ai>
8 lines
285 B
TypeScript
8 lines
285 B
TypeScript
import type { Script } from "$lib/gen"
|
|
|
|
export type ScriptBuilderFunctionExports = {
|
|
setPreviewArgs: (args: Record<string, any>) => void
|
|
runPreview: () => Promise<string | undefined>
|
|
setCode: (code: string, language?: Script["language"]) => void
|
|
getCode: () => string
|
|
} |