Skip to content

Commit 9831588

Browse files
authored
Merge pull request #1988 from ably/type-correction-publishoptions
PublishOptions type issue fix
2 parents d02000d + 8f94f9c commit 9831588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ably.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2287,7 +2287,7 @@ export type PublishOptions = {
22872287
* Support any publish options that may be added serverside without needing
22882288
* typings changes.
22892289
*/
2290-
[k: string]: string | number | boolean;
2290+
[k: string]: string | number | boolean | undefined;
22912291
};
22922292

22932293
/**

0 commit comments

Comments
 (0)