18 lines
476 B
Plaintext
18 lines
476 B
Plaintext
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;
|