@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
1 lines • 126 B
TypeScript
export type PartialDeep<T> = T extends any[] ? T : T extends Record<string, any> ? { [P in keyof T]?: PartialDeep<T[P]> } : T;
Panter cli tool for cloud CI/CD and DevOps