mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
d60c3242af
swc_bundler: - Fix cycle detection for complex circular imports. (denoland/deno#10752) swc_ecma_transforms_typescript: - Allow using large values for an enum variant.
17 lines
735 B
TypeScript
17 lines
735 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/channels/threads/thread_metadata.ts
|
|
|
|
|
|
export interface ThreadMetadata {
|
|
/** Whether the thread is archived */
|
|
archived: boolean;
|
|
/** Id of the user that last archived or unarchived the thread */
|
|
archiverId?: string;
|
|
/** Duration in minutes to automatically archive the thread after recent activity */
|
|
autoArchiveDuration: 60 | 1440 | 4320 | 10080;
|
|
// TODO(threads): channel struct should convert this to a unixx
|
|
/** Timestamp when the thread's archive status was last changed, used for calculating recent activity */
|
|
archiveTimestamp: string;
|
|
/** When a thread is locked, only users with `MANAGE_THREADS` can unarchive it */
|
|
locked?: boolean;
|
|
}
|