chore: fix jsdocs

This commit is contained in:
EvolutionX
2022-08-05 13:31:37 +05:30
parent d16a6ac9d9
commit 1e27338d9c
12 changed files with 28 additions and 465 deletions

View File

@@ -1,10 +1,9 @@
// @ts-nocheck
/**
* @author HighArcs
* Allows you to set cooldowns (or "ratelimits") for commands
*
* @author @HighArcs
* @version 1.0.0
* @description allows you to set cooldowns (or "ratelimits") for commands
* @license null
* @example
* ```ts
* import { cooldown } from "../plugins/cooldown";

View File

@@ -1,11 +1,11 @@
// @ts-nocheck
/**
* @author: @EvolutionX-10
* @version: 1.1.0-beta
* @description: This is dmOnly plugin, it allows commands to be run only in DMs.
* This is dmOnly plugin, it allows commands to be run only in DMs.
*
* @author @EvolutionX-10
* @version 1.0.0
* @requires `partials: [Partials.Channel], intents: [GatewayIntentBits.DirectMessages, GatewayIntentBits.MessageContent]
* @license: MIT
* @example:
* @example
* ```ts
* import { dmOnly } from "../path/to/your/plugin/folder";
* import { commandModule } from "@sern/handler";

View File

@@ -1,10 +1,10 @@
//@ts-nocheck
/**
* @author: @NeoYaBoi
* @version: 1.0.0
* @description: This plugin checks if the channel is nsfw and responds to user with a specified response if not nsfw
* @license: Null
* @example:
* This plugin checks if the channel is nsfw and responds to user with a specified response if not nsfw
*
* @author @NeoYaBoi
* @version 1.0.0
* @example
* ```ts
* import { nsfwOnly } from "../plugins/nsfwOnly"; //(change if need be)
* import { sernModule, CommandType } from "@sern/handler";

View File

@@ -1,10 +1,10 @@
// @ts-nocheck
/**
* @author: @EvolutionX-10
* @version: 1.0.0
* @description: This is OwnerOnly plugin, it allows only bot owners to run the command, like eval.
* @license: MIT
* @example:
* This is OwnerOnly plugin, it allows only bot owners to run the command, like eval.
*
* @author @EvolutionX-10
* @version 1.0.0
* @example
* ```ts
* import { ownerOnly } from "../path/to/your/plugin/folder";
* import { sernModule, CommandType } from "@sern/handler";

View File

@@ -1,10 +1,10 @@
// @ts-nocheck
/**
* @author: @NeoYaBoi
* @version: 1.0.1
* @description: This is perm check, it allows users to parse the permission you want and let the plugin do the rest. (check user for that perm).
* @license: Null
* @example:
* This is perm check, it allows users to parse the permission you want and let the plugin do the rest. (check user for that perm).
*
* @author @NeoYaBoi
* @version 1.0.1
* @example
* ```ts
* import { permCheck } from "../plugins/permCheck"; //(change if need be)
* import { sernModule, CommandType } from "@sern/handler";

View File

@@ -1,10 +1,10 @@
// @ts-nocheck
/**
* @author: @EvolutionX-10
* @version: 1.1.0-beta
* @description: This is publish plugin, it allows you to publish your slash commands with ease.
* @license: MIT
* @example:
* This is publish plugin, it allows you to publish your slash commands with ease.
*
* @author @EvolutionX-10
* @version 1.1.0
* @example
* ```ts
* import { publish } from "../path/to/your/plugin/folder";
* import { sernModule, CommandType } from "@sern/handler";