UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

14 lines (13 loc) 281 B
interface IOptions { engineId: string; apiKey: string; } /** * GoogleCustomSearch認証情報 */ declare class CustomSearchCredentials { readonly engineId: string; readonly apiKey: string; constructor(options: IOptions); } export { CustomSearchCredentials };