mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
16 lines
343 B
TypeScript
16 lines
343 B
TypeScript
import * as program from 'commander';
|
|
|
|
import { AuthResult } from 'jslib/models/domain/authResult';
|
|
|
|
import { AuthService } from 'jslib/abstractions/auth.service';
|
|
|
|
export class LoginCommand {
|
|
constructor(private authService: AuthService) {
|
|
|
|
}
|
|
|
|
run(email: string, password: string, cmd: program.Command) {
|
|
|
|
}
|
|
}
|