fixing interface implementation error
This commit is contained in:
parent
8bf280dda7
commit
6489fe3930
@ -1,6 +1,11 @@
|
|||||||
import {IPersonManager} from '../interfaces/IPersonManager';
|
import {IPersonManager} from '../interfaces/IPersonManager';
|
||||||
|
import {MediaDTO} from '../../../common/entities/MediaDTO';
|
||||||
|
|
||||||
export class IndexingTaskManager implements IPersonManager {
|
export class IndexingTaskManager implements IPersonManager {
|
||||||
|
keywordsToPerson(media: MediaDTO[]): Promise<void> {
|
||||||
|
throw new Error('Method not implemented.');
|
||||||
|
}
|
||||||
|
|
||||||
get(name: string): Promise<any> {
|
get(name: string): Promise<any> {
|
||||||
throw new Error('not supported by memory DB');
|
throw new Error('not supported by memory DB');
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user