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
11 lines
576 B
Plaintext
11 lines
576 B
Plaintext
import type { Metadata } from 'next';
|
|
import type { EditConfig, SanitizedCollectionConfig, SanitizedGlobalConfig } from 'payload';
|
|
import type { GenerateViewMetadata } from '../Root/index.js';
|
|
export type GenerateEditViewMetadata = (args: {
|
|
collectionConfig?: null | SanitizedCollectionConfig;
|
|
globalConfig?: null | SanitizedGlobalConfig;
|
|
isReadOnly?: boolean;
|
|
view?: keyof EditConfig;
|
|
} & Parameters<GenerateViewMetadata>[0]) => Promise<Metadata>;
|
|
export declare const getMetaBySegment: GenerateEditViewMetadata;
|
|
//# sourceMappingURL=getMetaBySegment.d.ts.map |