1
0
mirror of https://github.com/bitwarden/cli synced 2026-01-11 20:43:15 +00:00
Files
cli/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;