import type { NewScript } from '$lib/gen' import type { AssetWithAltAccessType } from './assets/lib' import type { ScriptBuilderWhitelabelCustomUi } from './custom_ui' import type { DiffDrawerI } from './diff_drawer' import type { ScriptBuilderFunctionExports } from './scriptBuilder' import type { ScheduleTrigger } from './triggers' import type { NewScriptWithDraftAndDraftTriggers, Trigger } from './triggers/utils' export interface ScriptBuilderProps { script: NewScript & { draft_triggers?: Trigger[] assets?: AssetWithAltAccessType[] } disableAi?: boolean fullyLoaded?: boolean initialPath?: string template?: 'docker' | 'bunnative' | 'script' initialArgs?: Record lockedLanguage?: boolean showMeta?: boolean neverShowMeta?: boolean diffDrawer?: DiffDrawerI | undefined savedScript?: NewScriptWithDraftAndDraftTriggers | undefined searchParams?: URLSearchParams disableHistoryChange?: boolean replaceStateFn?: (url: string) => void customUi?: ScriptBuilderWhitelabelCustomUi savedPrimarySchedule?: ScheduleTrigger | undefined functionExports?: ((exports: ScriptBuilderFunctionExports) => void) | undefined children?: import('svelte').Snippet onDeploy?: (e: { path: string; hash: string }) => void onDeployError?: (e: { path: string; error: any }) => void onSaveInitial?: (e: { path: string; hash: string }) => void onHistoryRestore?: () => void onSaveDraftOnlyAtNewPath?: (e: { path: string }) => void onSaveDraft?: (e: { path: string; savedAtNewPath: boolean; script: NewScript }) => void onSeeDetails?: (e: { path: string }) => void onSaveDraftError?: (e: { path: string; error: any }) => void }