tinacms
Version:
> The Fastest Way to Edit Next.js Content
14 lines (13 loc) • 519 B
TypeScript
/// <reference types="react" />
import { InputProps } from '../components';
export declare const TextareaField: (props: import("./wrap-field-with-meta").InputFieldType<{
input: InputProps;
}, {}>) => JSX.Element;
export declare const TextareaFieldPlugin: {
name: string;
Component: (props: import("./wrap-field-with-meta").InputFieldType<{
input: InputProps;
}, {}>) => JSX.Element;
parse: (value?: string) => string;
validate(value: any, values: any, meta: any, field: any): string;
};