mirror of
https://github.com/upscayl/upscayl.git
synced 2026-04-03 03:00:13 -04:00
8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
type FeatureFlags = {
|
|
APP_STORE_BUILD: boolean;
|
|
};
|
|
|
|
export const featureFlags: FeatureFlags = {
|
|
APP_STORE_BUILD: true,
|
|
};
|