UNPKG

@phala/cloud

Version:
15 lines 518 B
type SortableValue = string | number | boolean | null | undefined | SortableObject | SortableArray; interface SortableObject { [key: string]: SortableValue; } interface SortableArray extends Array<SortableValue> { } export interface AppCompose extends SortableObject { runner?: string; docker_compose_file?: string; bash_script?: string; pre_launch_script?: string; } export declare function getComposeHash(app_compose: AppCompose): string; export {}; //# sourceMappingURL=get_compose_hash.d.ts.map