1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-23 22:03:42 +01:00
2023-10-14 06:59:42 +05:30

9 lines
177 B
TypeScript

export const FLAGS = {
APP_STORE_BUILD: "APP_STORE_BUILD",
};
// Get flag from process.env
export const flag = (flag: keyof typeof FLAGS) => {
return process.env[flag];
};