@nouance/payload-better-fields-plugin
Version:
A Payload plugin that aims to provide improved fields for the admin panel
14 lines (13 loc) • 416 B
TypeScript
import type { NumberFieldClientProps, TextFieldClientProps } from 'payload';
import React from 'react';
import type { Config } from './index.js';
import './styles.css';
type Props = {
className?: string;
config: Config;
path: string;
placeholder?: string;
readOnly?: boolean;
} & (NumberFieldClientProps | TextFieldClientProps);
export declare const PatternComponent: React.FC<Props>;
export {};