UNPKG

server-status-check

Version:

query the server periodically to check whether it is up

13 lines 441 B
import { LoadDictElement } from 'di-why/build/src/DiContainer'; import { SentMessageInfo } from 'nodemailer'; declare type NotifyMessage = { subject: string; text: string; }; declare type NotifyAll = (conf: { sms: NotifyMessage; email: NotifyMessage; }) => Promise<[string[], SentMessageInfo]>; declare const loadDictElement: LoadDictElement<NotifyAll>; export default loadDictElement; //# sourceMappingURL=notifyAll.d.ts.map