mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-10 04:00:10 +00:00
fix with more natural syntax
This commit is contained in:
6
types/twitch-ext/index.d.ts
vendored
6
types/twitch-ext/index.d.ts
vendored
@@ -183,17 +183,17 @@ interface TwitchExtConfiguration {
|
||||
/**
|
||||
* This property returns the record for the broadcaster segment if one is found; otherwise, undefined.
|
||||
*/
|
||||
broadcaster: { version: string; content: string } | undefined;
|
||||
broadcaster?: { version: string; content: string };
|
||||
|
||||
/**
|
||||
* This property returns the record for the developer segment if one is found; otherwise, undefined.
|
||||
*/
|
||||
developer: { version: string; content: string } | undefined;
|
||||
developer?: { version: string; content: string };
|
||||
|
||||
/**
|
||||
* This property returns the record for the global segment if one is found; otherwise, undefined.
|
||||
*/
|
||||
global: { version: string; content: string } | undefined;
|
||||
global?: { version: string; content: string };
|
||||
|
||||
/**
|
||||
* This function registers a callback that is called whenever an extension configuration is received.
|
||||
|
||||
Reference in New Issue
Block a user