payload
Version:
Node, React, Headless CMS and Application Framework built on Next.js
16 lines • 1.15 kB
TypeScript
import type { MarkOptional } from 'ts-essentials';
import type { UIField, UIFieldClient } from '../../fields/config/types.js';
import type { ClientFieldBase, FieldClientComponent, FieldDiffClientComponent, FieldDiffServerComponent, FieldPaths, FieldServerComponent, ServerFieldBase } from '../types.js';
type UIFieldClientWithoutType = MarkOptional<UIFieldClient, 'type'>;
type UIFieldBaseClientProps = {
readonly path: string;
};
type UIFieldBaseServerProps = Pick<FieldPaths, 'path'>;
export type UIFieldClientProps = ClientFieldBase<UIFieldClientWithoutType> & UIFieldBaseClientProps;
export type UIFieldServerProps = ServerFieldBase<UIField, UIFieldClientWithoutType> & UIFieldBaseServerProps;
export type UIFieldClientComponent = FieldClientComponent<UIFieldClientWithoutType, UIFieldBaseClientProps>;
export type UIFieldServerComponent = FieldServerComponent<UIField, UIFieldClientWithoutType, UIFieldBaseServerProps>;
export type UIFieldDiffServerComponent = FieldDiffServerComponent<UIField, UIFieldClient>;
export type UIFieldDiffClientComponent = FieldDiffClientComponent<UIFieldClient>;
export {};
//# sourceMappingURL=UI.d.ts.map