mirror of
https://github.com/upscayl/upscayl.git
synced 2026-02-19 11:55:37 -05:00
9 lines
177 B
TypeScript
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];
|
|
};
|