18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
import Storage, { StorageResponse } from '../../storage/storage';
|
|
import {
|
|
PipelineProcessor,
|
|
PipelineProcessorProps,
|
|
ProcessorType,
|
|
} from '../processor';
|
|
interface StorageExtractorProps extends PipelineProcessorProps {
|
|
storage: Storage<any>;
|
|
}
|
|
declare class StorageExtractor extends PipelineProcessor<
|
|
Promise<StorageResponse>,
|
|
StorageExtractorProps
|
|
> {
|
|
get type(): ProcessorType;
|
|
_process(opts: any): Promise<StorageResponse>;
|
|
}
|
|
export default StorageExtractor;
|