Files
windmill/frontend/src/lib/components/scriptBuilder.ts
T
Ruben Fiszel 72109b01d7 whitelabel improvements (#5405)
* 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>
2025-03-03 22:35:05 +01:00

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
}