UNPKG

@uigstudio/uig-nextjs-helper

Version:

``` npm install @uig/uig-nextjs-helper ``` or ``` yarn add -D @uig/uig-nextjs-helper ```

17 lines (16 loc) 403 B
export declare type ApiErrorType = { statusCode: number; error: string; message: string; }; export declare type NestedApiErrorType = { message: ApiErrorType; }; export declare const initialApiError: ApiErrorType; export declare type SeoList = Array<{ id: string | number; slug: string; noIndex?: string; noFollow?: string; hideInSitemap?: string; }>;