UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

4 lines (3 loc) 132 B
export type PartialDeep<T> = T extends any[] ? T : T extends Record<string, any> ? { [P in keyof T]?: PartialDeep<T[P]>; } : T;