frontend/.pnpm-store/v3/files/ee/e2f0783dcea564d22451325994035e23cdd70810a7a0cc726e12e61d9979b8206ea22e26bb733fd820e25ffb6d10b752a9e6f0251d83dcab59d71381aefad2

9 lines
365 B
Plaintext

import { PipelineProcessor, ProcessorType } from '../processor';
import Tabular from '../../tabular';
import { ArrayResponse } from './storageResponseToArray';
declare class ArrayToTabularTransformer extends PipelineProcessor<Tabular, {}> {
get type(): ProcessorType;
_process(arrayResponse: ArrayResponse): Tabular;
}
export default ArrayToTabularTransformer;