mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-05-31 16:00:09 +00:00
fix(poll): mark expiry as nullable (#1576)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2
deno/payloads/v10/poll.ts
generated
2
deno/payloads/v10/poll.ts
generated
@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
|
||||
/**
|
||||
* The time when the poll ends (IS08601 timestamp)
|
||||
*/
|
||||
expiry: string;
|
||||
expiry: string | null;
|
||||
/**
|
||||
* The results of the poll
|
||||
*/
|
||||
|
||||
2
deno/payloads/v9/poll.ts
generated
2
deno/payloads/v9/poll.ts
generated
@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
|
||||
/**
|
||||
* The time when the poll ends (IS08601 timestamp)
|
||||
*/
|
||||
expiry: string;
|
||||
expiry: string | null;
|
||||
/**
|
||||
* The results of the poll
|
||||
*/
|
||||
|
||||
@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
|
||||
/**
|
||||
* The time when the poll ends (IS08601 timestamp)
|
||||
*/
|
||||
expiry: string;
|
||||
expiry: string | null;
|
||||
/**
|
||||
* The results of the poll
|
||||
*/
|
||||
|
||||
@@ -37,7 +37,7 @@ export interface APIPoll extends APIBasePoll, APIPollDefaults {
|
||||
/**
|
||||
* The time when the poll ends (IS08601 timestamp)
|
||||
*/
|
||||
expiry: string;
|
||||
expiry: string | null;
|
||||
/**
|
||||
* The results of the poll
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user