@phala/cloud
Version:
TypeScript SDK for Phala Cloud API
15 lines • 518 B
TypeScript
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