cordbuilder
Version:
Simple dsl to create discord builders simple.
13 lines (12 loc) • 601 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BUTTON_PROPERTIES = void 0;
const ast_1 = require("../types/ast");
exports.BUTTON_PROPERTIES = [
{ name: 'id', kind: ast_1.ExpressionKind.StringExpression },
{ name: 'label', kind: ast_1.ExpressionKind.StringExpression },
{ name: 'emoji', kind: ast_1.ExpressionKind.StringExpression },
{ name: 'style', kind: ast_1.ExpressionKind.Identifier, required: true },
{ name: 'url', kind: ast_1.ExpressionKind.StringExpression },
{ name: 'disabled', kind: ast_1.ExpressionKind.BooleanExpression }
];