mirror of
https://github.com/upscayl/upscayl.git
synced 2026-02-19 11:55:37 -05:00
8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
type FeatureFlags = {
|
|
APP_STORE_BUILD: boolean;
|
|
};
|
|
|
|
export const featureFlags: FeatureFlags = {
|
|
APP_STORE_BUILD: false,
|
|
};
|