fix(APIInvite): expires_at is nullable (#128)

This commit is contained in:
Advaith
2021-04-30 09:58:16 -07:00
committed by GitHub
parent 82ca0ce5c4
commit 44b956ad85
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ export interface APIInvite {
/**
* The expiration date of this invite, returned from the `GET /invites/<code>` endpoint when `with_expiration` is `true`
*/
expires_at?: string;
expires_at?: string | null;
}
/**

View File

@@ -62,7 +62,7 @@ export interface APIInvite {
/**
* The expiration date of this invite, returned from the `GET /invites/<code>` endpoint when `with_expiration` is `true`
*/
expires_at?: string;
expires_at?: string | null;
}
/**