diff options
| author | 8cy <[email protected]> | 2020-04-03 02:48:28 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-03 02:48:28 -0700 |
| commit | f9159ea2d994e14180fb02ab562f0119513e67cf (patch) | |
| tree | 09d14cdf05456567156738b681379d4bccd64e5c /node_modules/discord.js/src/util/SystemChannelFlags.js | |
| parent | 2020/04/03, 02:42, V1.2.1 (diff) | |
| download | s5nical-f9159ea2d994e14180fb02ab562f0119513e67cf.tar.xz s5nical-f9159ea2d994e14180fb02ab562f0119513e67cf.zip | |
2020/04/03, 02:47, V1.2.2
Diffstat (limited to 'node_modules/discord.js/src/util/SystemChannelFlags.js')
| -rw-r--r-- | node_modules/discord.js/src/util/SystemChannelFlags.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/node_modules/discord.js/src/util/SystemChannelFlags.js b/node_modules/discord.js/src/util/SystemChannelFlags.js deleted file mode 100644 index 9f74984..0000000 --- a/node_modules/discord.js/src/util/SystemChannelFlags.js +++ /dev/null @@ -1,31 +0,0 @@ -const BitField = require('./BitField'); - -/** - * Data structure that makes it easy to interact with a {@link Guild#systemChannelFlags} bitfield. - * <info>Note that all event message types are enabled by default, - * and by setting their corresponding flags you are disabling them</info> - * @extends {BitField} - */ -class SystemChannelFlags extends BitField {} - -/** - * Data that can be resolved to give a sytem channel flag bitfield. This can be: - * * A string (see {@link SystemChannelFlags.FLAGS}) - * * A sytem channel flag - * * An instance of SystemChannelFlags - * * An Array of SystemChannelFlagsResolvable - * @typedef {string|number|SystemChannelFlags|SystemChannelFlagsResolvable[]} SystemChannelFlagsResolvable - */ - -/** - * Numeric system channel flags. All available properties: - * * `WELCOME_MESSAGE_DISABLED` - * * `BOOST_MESSAGE_DISABLED` - * @type {Object} - */ -SystemChannelFlags.FLAGS = { - WELCOME_MESSAGE_DISABLED: 1 << 0, - BOOST_MESSAGE_DISABLED: 1 << 1, -}; - -module.exports = SystemChannelFlags; |