fix(GatewayHeartbeat): d is nullable (#26)

This commit is contained in:
didinele
2020-10-18 14:14:08 +03:00
committed by GitHub
parent e2015c63e1
commit 0982610731
2 changed files with 2 additions and 2 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "discord-api-types",
"version": "0.5.0",
"version": "0.6.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -581,7 +581,7 @@ export type GatewayWebhooksUpdateDispatch = DataPayload<
*/
export interface GatewayHeartbeat {
op: GatewayOPCodes.Heartbeat;
d: number;
d: number | null;
}
/**