13 lines
173 B
TypeScript
13 lines
173 B
TypeScript
interface versions {
|
|
api: string[];
|
|
app: string;
|
|
}
|
|
|
|
const version: versions = {
|
|
api: ["/api/v2"],
|
|
app: "2024.2.1",
|
|
};
|
|
|
|
module.exports = version;
|
|
export { version };
|