@aristid/leav-types 1.5.0-36efa9cc → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,13 +17,5 @@ interface IMailpitMsgFull extends IMailpitMsgLight {
|
|
|
17
17
|
HTML: string;
|
|
18
18
|
Text: string;
|
|
19
19
|
}
|
|
20
|
-
interface IMailpitSearchResult {
|
|
21
|
-
messages: IMailpitMsgLight[];
|
|
22
|
-
total: number;
|
|
23
|
-
unread: number;
|
|
24
|
-
}
|
|
25
20
|
export declare function waitMailpitMessage(acceptMessage: (msg: IMailpitMsgLight) => boolean): Promise<IMailpitMsgFull>;
|
|
26
|
-
export declare function deleteMailpitMessagesBySearch(search: string): Promise<void>;
|
|
27
|
-
export declare function searchMailpitMessages(search: string): Promise<IMailpitSearchResult>;
|
|
28
|
-
export declare function waitForMailpitSearchMessage(search: string, timeoutMs?: number, intervalMs?: number): Promise<IMailpitMsgLight[]>;
|
|
29
21
|
export {};
|