1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00
Files
browser/src/commands/login.command.ts
2018-05-12 15:12:28 -04:00

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) {
}
}