UNPKG

gridjs

Version:

Advanced table plugin

11 lines (10 loc) 479 B
import { PipelineProcessor, PipelineProcessorProps, ProcessorType } from '../processor'; import { ServerStorageOptions } from '../../storage/server'; interface ServerInitiatorProps extends PipelineProcessorProps { serverStorageOptions: ServerStorageOptions; } declare class ServerInitiator extends PipelineProcessor<ServerStorageOptions, ServerInitiatorProps> { get type(): ProcessorType; _process(): ServerStorageOptions; } export default ServerInitiator;