1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-06-06 23:36:23 +02:00
pigallery2/backend/model/interfaces/IVersionManager.ts

6 lines
113 B
TypeScript
Raw Normal View History

export interface IVersionManager {
getDataVersion(): Promise<string>;
updateDataVersion(): Promise<void>;
}