From 9ce1314133ceacf2d1e58866093b42341c301cd4 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Tue, 8 Mar 2022 18:14:42 -0600 Subject: [PATCH] docs(wrapper.ts) Add events property to JSDoc --- src/handler/structures/wrapper.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/handler/structures/wrapper.ts b/src/handler/structures/wrapper.ts index 8552128..29a4a67 100644 --- a/src/handler/structures/wrapper.ts +++ b/src/handler/structures/wrapper.ts @@ -7,8 +7,9 @@ import type { DiscordEvent } from '../../types/handler'; * @property {readonly Client} client * @property {readonly string} prefix * @property {readonly string} commands - * @prop {(handler : Handler) => void)} ini + * @prop {(handler : Handler) => void)} init * @property {readonly {test: boolean, id: string}[]} privateServers + * @prop { readonly DiscordEvent[] } events */ interface Wrapper { readonly client: Client;