@chevre/domain
Version:
Chevre Domain Library for Node.js
15 lines (14 loc) • 397 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomSearchCredentials = void 0;
/**
* GoogleCustomSearch認証情報
*/
class CustomSearchCredentials {
constructor(options) {
const { engineId, apiKey } = options;
this.engineId = engineId;
this.apiKey = apiKey;
}
}
exports.CustomSearchCredentials = CustomSearchCredentials;
;