@tinacms/toolkit
Version:
Tina is a lightweight but powerful toolkit for creating a site editing ui with javascript components. Tina surfaces superpowers for dev’s to create, expand on and customize a simple yet intuitive ui for editing content.
9 lines (7 loc) • 345 B
TypeScript
/**
*/
import type { DatetimepickerProps } from 'react-datetime';
export declare const DEFAULT_DATE_DISPLAY_FORMAT = "MMM DD, YYYY";
export declare const DEFAULT_TIME_DISPLAY_FORMAT = "h:mm A";
export declare const format: (val: string, _name: string, field: DatetimepickerProps) => string;
export declare const parse: (val: string) => string;