UNPKG

next

Version:

The React Framework

6 lines (5 loc) 204 B
declare type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]>; }; export declare function findConfig<T>(directory: string, key: string): Promise<RecursivePartial<T> | null>; export {};