import { ConstFunction } from '../east'; import { ModulePath } from '../template'; export type DefaultDeploymentValue = { default_type: "file"; stream: string; module: ModulePath; path: string; } | { default_type: "value"; stream: string; module: ModulePath; value: ConstFunction; };