UNPKG

next-csrf

Version:

CSRF mitigation library for Next.js

16 lines (15 loc) 351 B
export declare type OutputState = { bootstrap: true; appUrl: string | null; } | ({ bootstrap: false; appUrl: string | null; } & ({ loading: true; } | { loading: false; typeChecking: boolean; errors: string[] | null; warnings: string[] | null; })); export declare const store: import("unistore").Store<OutputState>;