UNPKG

slash-create

Version:

Create and sync Discord slash commands!

14 lines (13 loc) 491 B
import { BitField, BitFieldResolvable } from '../util/bitfield'; /** * Data structure that makes it easy to interact with a permission bitfield. * All {@link Member}s have a set of permissions. */ export declare class Permissions extends BitField { /** Permission flags. Check the source of this property for available permissions. */ static FLAGS: { [perm: string]: bigint; }; /** @param bits Bit(s) to read from. */ constructor(bits?: BitFieldResolvable); }