8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
import {PersonEntry} from '../sql/enitites/PersonEntry';
|
|
|
|
export interface IPersonManager {
|
|
get(name: string): Promise<PersonEntry>;
|
|
|
|
saveAll(names: string[]): Promise<void>;
|
|
}
|