@mini-markdown-rc/editor
Version:
8 lines (7 loc) • 308 B
TypeScript
import { FC } from 'react';
import { GlobalConfig } from '../../types/global-config';
export declare const ConfigContext: import('react').Context<import('../../types/global-config').GlobalContextConfig>;
export declare const ConfigProvider: FC<{
children: React.ReactNode;
config?: GlobalConfig;
}>;