Skip to content

Commit 6b84a80

Browse files
elyalvaradoalyezz
authored andcommitted
Explicitly set return type to functions in Report interface on index.d.ts (#394)
1 parent 0b4d7ea commit 6b84a80

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

index.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -336,16 +336,16 @@ export enum strings {
336336
}
337337

338338
interface Report {
339-
logDebug(log: string);
340-
logVerbose(log: string);
341-
logWarn(log: string);
342-
logError(log: string);
343-
logInfo(log: string);
344-
appendTag(tag: string);
345-
appendConsoleLog(consoleLog: string);
346-
setUserAttribute(key: string, value: string);
347-
addFileAttachmentWithUrl(url: string, filename: string);
348-
addFileAttachmentWithData(data: string, filename: string);
339+
logDebug(log: string): void;
340+
logVerbose(log: string): void;
341+
logWarn(log: string): void;
342+
logError(log: string): void;
343+
logInfo(log: string): void;
344+
appendTag(tag: string): void;
345+
appendConsoleLog(consoleLog: string): void;
346+
setUserAttribute(key: string, value: string): void;
347+
addFileAttachmentWithUrl(url: string, filename: string): void;
348+
addFileAttachmentWithData(data: string, filename: string): void;
349349
}
350350

351351
interface Survey {

0 commit comments

Comments
 (0)