1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-20 06:56:40 +02:00
keeweb/app/scripts/models/external/external-otp-device-model.js

22 lines
419 B
JavaScript
Raw Normal View History

2020-04-15 16:50:01 +02:00
import { ExternalDeviceModel } from 'models/external/external-device-model';
class ExternalOtpDeviceModel extends ExternalDeviceModel {
open(callback) {
throw 'Not implemented';
}
cancelOpen() {
throw 'Not implemented';
}
2020-05-05 20:47:15 +02:00
close(callback) {
throw 'Not implemented';
}
2020-04-15 16:50:01 +02:00
getOtp(callback) {
throw 'Not implemented';
}
}
export { ExternalOtpDeviceModel };