UNPKG

@antv/t8

Version:

T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative JSON Schema syntax that can be used to describe the content of data interpretation reports.

16 lines 657 B
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