Files
recap/node_modules/@start9labs/start-sdk/base/lib/util/GetSystemSmtp.d.ts
T

9 lines
343 B
TypeScript

import { Effects } from '../Effects';
import * as T from '../types';
import { Watchable } from './Watchable';
export declare class GetSystemSmtp extends Watchable<T.SmtpValue | null> {
protected readonly label = "GetSystemSmtp";
constructor(effects: Effects);
protected fetch(callback?: () => void): Promise<T.SmtpValue | null>;
}