mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
573 B
TypeScript
19 lines
573 B
TypeScript
import {PersonEntry} from '../sql/enitites/PersonEntry';
|
|
import {MediaDTO} from '../../../common/entities/MediaDTO';
|
|
import {PhotoDTO} from '../../../common/entities/PhotoDTO';
|
|
import {PersonDTO} from '../../../common/entities/PersonDTO';
|
|
|
|
export interface IPersonManager {
|
|
getAll(): Promise<PersonEntry[]>;
|
|
|
|
getSamplePhoto(name: string): Promise<PhotoDTO>;
|
|
|
|
get(name: string): Promise<PersonEntry>;
|
|
|
|
saveAll(names: string[]): Promise<void>;
|
|
|
|
onGalleryIndexUpdate(): Promise<void>;
|
|
|
|
updatePerson(name: string, partialPerson: PersonDTO): Promise<PersonEntry>;
|
|
}
|