@nouance/payload-better-fields-plugin
Version:
A Payload plugin that aims to provide improved fields for the admin panel
16 lines (15 loc) • 397 B
TypeScript
import type { TextFieldClientProps } from 'payload';
import React from 'react';
import type { Config } from './index.js';
type Props = {
className?: string;
config: {
options: Config;
watchFields: string[];
};
path: string;
placeholder?: string;
readOnly?: boolean;
} & TextFieldClientProps;
export declare const ComboComponent: React.FC<Props>;
export {};