@ai-stack/payloadcms
Version:
<p align="center"> <img alt="Payload AI Plugin" src="assets/payload-ai-intro.gif" width="100%" /> </p>
14 lines (13 loc) • 328 B
TypeScript
import type { ClientField } from 'payload';
import type { FC } from 'react';
type ComposeProps = {
descriptionProps?: {
field: ClientField;
path: string;
schemaPath: string;
};
instructionId: string;
isConfigAllowed: boolean;
};
export declare const Compose: FC<ComposeProps>;
export {};