diff --git a/src/types/channels/list_public_archived_threads.ts b/src/types/channels/list_public_archived_threads.ts new file mode 100644 index 000000000..fe5eae590 --- /dev/null +++ b/src/types/channels/list_public_archived_threads.ts @@ -0,0 +1,7 @@ +export interface ListPublicArchivedThreads { + // TODO: convert unix to ISO9601 timestamp + /** Returns threads before this timestamp. UNIX or ISO8601 timestamp */ + before?: number | string; + /** Optional maximum number of threads to return */ + limit?: number; +}