mirror of
https://github.com/strapi/strapi.git
synced 2025-12-03 18:42:47 +00:00
fix types
This commit is contained in:
parent
0db7eb6bfe
commit
56032f7c8d
@ -5,7 +5,11 @@ import { Writable } from 'stream';
|
||||
import { chain } from 'stream-chain';
|
||||
import { stringer } from 'stream-json/jsonl/Stringer';
|
||||
|
||||
import type { IDestinationProvider, ProviderType, TransferStage } from '../../types';
|
||||
import type {
|
||||
IDestinationProvider,
|
||||
IDestinationProviderTransferResults,
|
||||
ProviderType,
|
||||
} from '../../types';
|
||||
import { createEncryptionCipher } from '../encryption/encrypt';
|
||||
|
||||
export interface ILocalFileDestinationProviderOptions {
|
||||
@ -33,7 +37,8 @@ export interface ILocalFileDestinationProviderOptions {
|
||||
};
|
||||
}
|
||||
|
||||
export interface ILocalFileDestinationProviderTransferResults {
|
||||
export interface ILocalFileDestinationProviderTransferResults
|
||||
extends IDestinationProviderTransferResults {
|
||||
file?: {
|
||||
path?: string;
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user