tinacms
Version:
> The Fastest Way to Edit Next.js Content
15 lines (14 loc) • 518 B
TypeScript
import * as React from 'react';
import { TinaCMSProviderProps } from './tina-cms-provider';
import { TinaUIProps } from './tina-ui';
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;