auth/node_modules/twilio/lib/auth_strategy/AuthStrategy.js

12 lines
256 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class AuthStrategy {
constructor(authType) {
this.authType = authType;
}
getAuthType() {
return this.authType;
}
}
exports.default = AuthStrategy;