Skip to main content

Sapphire Logo

@sapphire/decorators

Useful TypeScript decorators for Sapphire Framework bots.

GitHub npm bundle size npm

Description

Decorators can add a lot of functionality with very minimal code. This package provides some common decorators that can be used with projects using the Sapphire Framework.

Installation

@sapphire/decorators depends on the following packages. Be sure to install these along with this package!

You can use the following command to install this package, or replace npm install with your package manager of choice.

npm install @sapphire/decorators @sapphire/discord.js-utilities @sapphire/utilities @sapphire/framework discord.js

Buy us some doughnuts

Sapphire Community is and always will be open source, even if we don't get donations. That being said, we know there are amazing people who may still want to donate just to show their appreciation. Thank you very much in advance!

We accept donations through Open Collective, Ko-fi, Paypal, Patreon and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.

Donate WithAddress
Open CollectiveClick Here
Ko-fiClick Here
PatreonClick Here
PayPalClick Here

Contributors

Please make sure to read the Contributing Guide before making a pull request.

Thank you to all the people who already contributed to Sapphire!

Enumerations

EnumerationDescription
DecoratorIdentifiers-

Interfaces

InterfaceDescription
ApplyOptionsCallbackParameters-
FunctionFallbackThe fallback interface, this is called when the function precondition returns or resolves with a falsy value.
FunctionPreconditionThe function precondition interface.

Functions

FunctionDescription
ApplyOptionsDecorator function that applies given options to any Sapphire piece
createClassDecoratorUtility to make a class decorator with lighter syntax and inferred types.
createFunctionPreconditionUtility to make function preconditions.
createMethodDecoratorUtility to make a method decorator with lighter syntax and inferred types.
EnumerableDecorator that sets the enumerable property of a class field to the desired value.
EnumerableMethodDecorator that sets the enumerable property of a class method to the desired value.
RequiresClientPermissionsAllows you to set permissions required for individual methods. This is particularly useful for subcommands that require specific permissions.
RequiresDMContextRequires the message to be run in a dm context, this decorator requires the first argument to be a Message or BaseInteraction instance which includes all interaction types
RequiresGuildContextRequires the message to be run in a guild context, this decorator requires the first argument to be a Message or BaseInteraction instance which includes all interaction types
RequiresUserPermissionsAllows you to set permissions required for individual methods. This is particularly useful for subcommands that require specific permissions.