2017-08-25 22:19:35 -06:00

4 lines
65 B
TypeScript

export declare type Partial<T> = {
[P in keyof T]?: T[P];
};