UNPKG

@noloco/google-spreadsheet

Version:

Google Sheets API -- simple interface to read/write data and manage sheets

9 lines (6 loc) 202 B
// utility types export type MakeOptional<Type, Key extends keyof Type> = Omit<Type, Key> & Partial<Pick<Type, Key>>; export type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]>; };