@casual-simulation/aux-common
Version:
Common library for AUX projects
15 lines • 353 B
TypeScript
export interface AppVersion {
/**
* Gets the git tag that this version was built from.
*/
gitTag: string;
/**
* Gets the Git hash that this version was built from.
*/
gitHash: string;
/**
* Gets the API that this app has support for.
*/
apiVersion: number;
}
//# sourceMappingURL=AppVersion.d.ts.map