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