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.

18 lines (14 loc) 376 B
/** */ import * as React from 'react'; export declare const MutationSignalContext: React.Context<number>; /** * */ export declare const MutationSignalProvider: ({ children }: { children: any; }) => JSX.Element; /** * Returns a value that changes when elements within the parent MutationSignalProvider change */ export declare const useMutationSignal: () => number;