add: ListPublicArchivedThreads

This commit is contained in:
ITOH
2021-05-01 11:18:16 +02:00
parent f9a516d503
commit dc2a3eb9f0

View File

@@ -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;
}