tinacms
Version:
[](https://github.com/tinacms/tinacms/blob/main/LICENSE) [](https://www.npmjs.com/package/tinacms) [![Bui
16 lines (15 loc) • 609 B
TypeScript
import * as React from 'react';
import { InputProps } from '../components';
interface ExtraProps {
placeholder: string;
confirmPlaceholder: string;
disabled?: boolean;
}
export declare const PasswordFieldComponent: (props: import("./field-props").FieldProps<InputProps & ExtraProps>) => React.JSX.Element;
export declare const PasswordFieldPlugin: {
name: string;
Component: (props: import("./field-props").FieldProps<InputProps & ExtraProps>) => React.JSX.Element;
validate(value: any, values: any, meta: any, field: any): string;
parse: (value?: string) => string;
};
export {};