gridjs
Version:
Advanced table plugin
9 lines (8 loc) • 394 B
TypeScript
import { PipelineProcessor, ProcessorType } from '../processor';
import Tabular from '../../tabular';
import { ArrayResponse } from './storageResponseToArray';
declare class ArrayToTabularTransformer extends PipelineProcessor<Tabular, Record<string, any>> {
get type(): ProcessorType;
_process(arrayResponse: ArrayResponse): Tabular;
}
export default ArrayToTabularTransformer;