UNPKG

@pubby/sdk

Version:
5 lines (4 loc) 150 B
export declare type DeepPartial<T> = { [p in keyof T]?: DeepPartial<T[p]>; }; export declare type Constructor<T> = new (...args: any[]) => T;