UNPKG

tinacms

Version:

[![GitHub license](https://img.shields.io/github/license/tinacms/tinacms?color=blue)](https://github.com/tinacms/tinacms/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/tinacms.svg?style=flat)](https://www.npmjs.com/package/tinacms) [![Bui

17 lines (15 loc) 399 B
/** */ import { OnNewDocument } from './create-page-plugin'; export type FilterCollections = (options: { label: string; value: string; }[]) => { label: string; value: string; }[]; export type DocumentCreatorArgs = { onNewDocument?: OnNewDocument; filterCollections?: FilterCollections; }; export declare const useDocumentCreatorPlugin: (args?: DocumentCreatorArgs) => void;