UNPKG

@wilcosp/rex

Version:

Rex is an automated command manager for discord js

17 lines (16 loc) 568 B
/*! * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import { ButtonBuilder } from "discord.js"; /** * creates a link button for in actionrows (can't be used like RexButtonComponent) */ export declare class RexLinkButton extends ButtonBuilder { /** * @param label the label for the button * @param url the url that the button will link to */ constructor(label: string, url: string); }