UNPKG

@visactor/vdataset

Version:

data processing tool

11 lines (10 loc) 280 B
import type { DataView } from '../data-view'; export type Parser = (data: any, options: any, dataView: DataView) => any; type ParserName = string; export interface IParserOptions { type: ParserName; clone?: boolean; options?: any; layerType?: string; } export {};