@studion/infra-code-blocks
Version:
Studion common infra components
23 lines (22 loc) • 484 B
TypeScript
export declare const PredefinedSize: {
readonly small: {
readonly cpu: number;
readonly memory: number;
};
readonly medium: {
readonly cpu: number;
readonly memory: 1024;
};
readonly large: {
readonly cpu: 1024;
readonly memory: number;
};
readonly xlarge: {
readonly cpu: number;
readonly memory: number;
};
};
export declare const commonTags: {
Env: string;
Project: string;
};