@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.
20 lines (16 loc) • 525 B
TypeScript
/**
*/
import * as React from 'react';
import { TinaCMSProviderProps } from './TinaCMSProvider';
import { TinaUIProps } from './TinaUI';
export interface TinaProviderProps extends TinaCMSProviderProps, TinaUIProps {
}
export declare const TinaProvider: React.FC<TinaProviderProps>;
/**
* @deprecated This has been renamed to `TinaProvider`.
*/
export declare const Tina: React.FC<TinaProviderProps>;
/**
* @deprecated This has been renamed to `TinaProviderProps`.
*/
export declare type TinaProps = TinaProviderProps;