Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
863 B
Plaintext
21 lines
863 B
Plaintext
import type { Metadata } from 'next';
|
|
import type { AdminViewServerProps, ImportMap, SanitizedConfig } from 'payload';
|
|
import React from 'react';
|
|
export declare const generateNotFoundViewMetadata: ({ config: configPromise, }: {
|
|
config: Promise<SanitizedConfig> | SanitizedConfig;
|
|
params?: {
|
|
[key: string]: string | string[];
|
|
};
|
|
}) => Promise<Metadata>;
|
|
export declare const NotFoundPage: ({ config: configPromise, importMap, params: paramsPromise, searchParams: searchParamsPromise, }: {
|
|
config: Promise<SanitizedConfig>;
|
|
importMap: ImportMap;
|
|
params: Promise<{
|
|
segments: string[];
|
|
}>;
|
|
searchParams: Promise<{
|
|
[key: string]: string | string[];
|
|
}>;
|
|
}) => Promise<React.JSX.Element>;
|
|
export declare function NotFoundView(props: AdminViewServerProps): React.JSX.Element;
|
|
//# sourceMappingURL=index.d.ts.map |