1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-23 22:03:42 +01:00

9 lines
177 B
TypeScript
Raw Normal View History

2023-10-14 06:30:49 +05:30
export const FLAGS = {
2023-10-14 06:59:42 +05:30
APP_STORE_BUILD: "APP_STORE_BUILD",
2023-10-14 06:30:49 +05:30
};
// Get flag from process.env
export const flag = (flag: keyof typeof FLAGS) => {
return process.env[flag];
};