createTimestamp should be number

This commit is contained in:
lts20050703
2022-01-28 07:37:46 +07:00
parent 9cba3cc9b0
commit d155ea82db
2 changed files with 2 additions and 2 deletions

View File

@@ -146,5 +146,5 @@ export interface DiscordenoChannel {
/** The voice states that are in this channel assuming it is a voice channel. */
voiceStates?: Collection<bigint, DiscordenoVoiceState>;
/** timestamp when the thread was created; only populated for threads created after 2022-01-09 */
createTimestamp?: string;
createTimestamp?: number;
}

View File

@@ -63,5 +63,5 @@ export interface Channel {
/** whether non-moderators can add other non-moderators to a thread; only available on private threads */
invitable?: boolean;
/** timestamp when the thread was created; only populated for threads created after 2022-01-09 */
createTimestamp?: string;
createTimestamp?: number;
}