@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
13 lines (12 loc) • 687 B
TypeScript
import type { MultipleDataCleanCtx, MultipleDataCleanOptions } from '../../types';
import { AtomName } from '../../types/atom';
import { BaseAtom } from '../base';
export declare class MultipleDataCleanAtom extends BaseAtom<MultipleDataCleanCtx, MultipleDataCleanOptions> {
name: AtomName;
constructor(context: MultipleDataCleanCtx, option: MultipleDataCleanOptions);
buildDefaultContext(context: MultipleDataCleanCtx): MultipleDataCleanCtx;
buildDefaultOptions(): MultipleDataCleanOptions;
shouldRunByContextUpdate(context: MultipleDataCleanCtx): boolean;
_runWithOutLLM(): MultipleDataCleanCtx;
}
export declare const registerMultipleDataCleanAtom: () => void;