@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.
17 lines (13 loc) • 467 B
TypeScript
/**
*/
import { Form } from '../../packages/forms';
import { ScreenPlugin } from '../../packages/react-screens';
export declare class GlobalFormPlugin implements ScreenPlugin {
form: Form;
__type: ScreenPlugin['__type'];
name: ScreenPlugin['name'];
Component: ScreenPlugin['Component'];
Icon: ScreenPlugin['Icon'];
layout: ScreenPlugin['layout'];
constructor(form: Form, icon?: ScreenPlugin['Icon'], layout?: ScreenPlugin['layout']);
}