mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
* Add device-approval scaffolding * Refactor: move helpers to BaseProgram * Update CODEOWNERS
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { Response } from "@bitwarden/cli/models/response";
|
|
|
|
export class DenyAllCommand {
|
|
constructor() {}
|
|
|
|
async run(organizationId: string): Promise<Response> {
|
|
throw new Error("Not implemented");
|
|
}
|
|
}
|