@visactor/vmind
Version:
<div align="center"> <a href="https://github.com/VisActor#gh-light-mode-only" target="_blank"> <img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_light.svg"/> </a> <a href="https://githu
12 lines (11 loc) • 489 B
TypeScript
import { AtomName } from '../../types/atom';
import { BaseAtom } from '../base';
import type { BaseOptions, VChartSpecCtx } from '../../types';
export declare class VChartSpec extends BaseAtom<VChartSpecCtx, BaseOptions> {
name: AtomName;
isLLMAtom: boolean;
constructor(context: VChartSpecCtx, option: BaseOptions);
buildDefaultContext(context: VChartSpecCtx): VChartSpecCtx;
_runWithOutLLM(): VChartSpecCtx;
}
export declare const registerVChartSpecAtom: () => void;