mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
export enum ExperimentalFeatures {
|
|
LiquidFlow = 'liquidFlow',
|
|
}
|
|
|
|
export const experimentalFeatures: Record<ExperimentalFeatures, boolean> = {
|
|
[ExperimentalFeatures.LiquidFlow]: false,
|
|
};
|