UNPKG

next-csrf

Version:

CSRF mitigation library for Next.js

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 {};