frontend/.pnpm-store/v3/files/b5/c795235b5cc9b0a692db96e327adfacb0763ebc8b365980b014fc28ac9abbd9139c2abe3e299a0d62173eab19f9595756a42c2fe0a0620ed18a3998de7a1df

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;