Files
kodi-api-server/src/Streamer/ReadStreamProvider/read-stream-creatable-provider.interface.ts
T

8 lines
334 B
TypeScript

import { FileEntity } from '../../VideoFiles/Entity/file.entity';
import { ReadStreamCreatable } from '../Interface/read-stream-creatable.interface';
export interface ReadStreamCreatableProviderInterface {
supports(fileEntity: FileEntity): boolean;
getReadStreamCreatable(fileEntity: FileEntity): Promise<ReadStreamCreatable>;
}