mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-06-06 23:36:23 +02:00
6 lines
113 B
TypeScript
6 lines
113 B
TypeScript
|
export interface IVersionManager {
|
||
|
getDataVersion(): Promise<string>;
|
||
|
|
||
|
updateDataVersion(): Promise<void>;
|
||
|
}
|