@antv/t8
Version:
T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative T8 markdown syntax that can be used to describe the content of data interpretation reports.
16 lines • 657 B
TypeScript
import { ComponentChildren } from 'preact';
import { PluginManager } from '../../plugin';
import { SeedTokenOptions } from '../../theme';
import { NarrativeEvents } from '../types';
interface ContextProviderProps {
plugin?: PluginManager;
themeSeedToken?: SeedTokenOptions;
events?: NarrativeEvents;
children: ComponentChildren;
}
/**
* The ContextProvider component wraps the application with necessary context providers for plugins and themes.
*/
export declare const ContextProvider: ({ plugin, themeSeedToken, events, children, }: ContextProviderProps) => import("preact").JSX.Element;
export {};
//# sourceMappingURL=provider.d.ts.map