UNPKG

@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.

12 lines (8 loc) 248 B
/** */ import { Field, FormApi } from '../../forms'; import { FieldRenderProps } from '../../form-builder'; export interface FieldProps<InputProps> extends FieldRenderProps<any, HTMLElement> { field: Field & InputProps; form: FormApi; }