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