UNPKG

next-csrf

Version:

CSRF mitigation library for Next.js

9 lines (8 loc) 272 B
import * as React from 'react'; import { ReadyRuntimeError } from './Errors'; export declare type RuntimeErrorProps = { error: ReadyRuntimeError; }; declare const RuntimeError: React.FC<RuntimeErrorProps>; export declare const styles: string; export { RuntimeError };