export const ITrashRepository = 'ITrashRepository'; export interface ITrashRepository { empty(userId: string): Promise; restore(userId: string): Promise; restoreAll(assetIds: string[]): Promise; getDeletedIds(): AsyncIterableIterator<{ id: string }>; }