mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
* Add build-time feature flag capabilities * Toggle `bw serve` command with `serve` flag * Run linter and prettier
6 lines
81 B
TypeScript
6 lines
81 B
TypeScript
export type Flags = {
|
|
serve?: boolean;
|
|
};
|
|
|
|
export type FlagName = keyof Flags;
|