@nangohq/types
Version:
Types used in Nango applications
14 lines (13 loc) • 341 B
TypeScript
export interface Deployment {
readonly id: number;
readonly image: string;
readonly createdAt: Date;
readonly supersededAt: Date | null;
}
export type RoutingId = string;
export interface NodeConfig {
readonly image: string;
readonly cpuMilli: number;
readonly memoryMb: number;
readonly storageMb: number;
}