gridjs
Version:
Advanced table plugin
11 lines (10 loc) • 479 B
TypeScript
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;