9 lines
343 B
TypeScript
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>;
|
|
}
|