1.1.00
All checks were successful
Build and Release / build-and-release (push) Successful in 20m36s

This commit is contained in:
Bryan1029384756
2026-04-16 20:14:27 -05:00
parent 56a12fdf3e
commit 6813bb40dc
40 changed files with 2228 additions and 387 deletions

View File

@@ -9,6 +9,8 @@
*/
import type * as auth from "../auth.js";
import type * as authActions from "../authActions.js";
import type * as authGuard from "../authGuard.js";
import type * as categories from "../categories.js";
import type * as channelKeys from "../channelKeys.js";
import type * as channels from "../channels.js";
@@ -19,6 +21,7 @@ import type * as gifs from "../gifs.js";
import type * as invites from "../invites.js";
import type * as links from "../links.js";
import type * as members from "../members.js";
import type * as messageActions from "../messageActions.js";
import type * as messages from "../messages.js";
import type * as polls from "../polls.js";
import type * as presence from "../presence.js";
@@ -41,6 +44,8 @@ import type {
declare const fullApi: ApiFromModules<{
auth: typeof auth;
authActions: typeof authActions;
authGuard: typeof authGuard;
categories: typeof categories;
channelKeys: typeof channelKeys;
channels: typeof channels;
@@ -51,6 +56,7 @@ declare const fullApi: ApiFromModules<{
invites: typeof invites;
links: typeof links;
members: typeof members;
messageActions: typeof messageActions;
messages: typeof messages;
polls: typeof polls;
presence: typeof presence;