1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00
Files
browser/src/flags.ts
Matt Gibson 210e0502ca Feature/put serve behind feature flag (#455)
* Add build-time feature flag capabilities

* Toggle `bw serve` command with `serve` flag

* Run linter and prettier
2022-01-28 08:29:04 -06:00

6 lines
81 B
TypeScript

export type Flags = {
serve?: boolean;
};
export type FlagName = keyof Flags;