auth/node_modules/twilio/lib/credential_provider/CredentialProvider.js

12 lines
268 B
JavaScript

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