Skip to content

Commit 285ee08

Browse files
authored
Merge pull request #73 from JavanPoirier/patch-1
Make passed object parameter optional
2 parents 37db826 + 1c4eb04 commit 285ee08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function openInbox({
44
message,
55
cancelLabel,
66
removeText,
7-
}: {
7+
}?: {
88
app?: string | null;
99
title?: string;
1010
message?: string;
@@ -23,7 +23,7 @@ export function openComposer({
2323
bcc,
2424
subject,
2525
body,
26-
}: {
26+
}?: {
2727
app?: string | null;
2828
title?: string;
2929
message?: string;

0 commit comments

Comments
 (0)