@chevre/domain
Version:
Chevre Domain Library for Node.js
18 lines (17 loc) • 401 B
TypeScript
interface IOptions {
url: string;
accessToken: string;
accessTokenAlert: string;
accessTokenInfo: string;
}
/**
* 通知認証情報
*/
declare class LINENotifyCredentials {
readonly url: string;
readonly accessToken: string;
readonly accessTokenAlert: string;
readonly accessTokenInfo: string;
constructor(options: IOptions);
}
export { LINENotifyCredentials };