Files
st/web-app/public/scripts/slash-commands/SlashCommandNamedArgumentAssignment.js
2026-02-10 17:48:27 +08:00

13 lines
295 B
JavaScript

import { SlashCommandClosure } from './SlashCommandClosure.js';
export class SlashCommandNamedArgumentAssignment {
/** @type {number} */ start;
/** @type {number} */ end;
/** @type {string} */ name;
/** @type {string|SlashCommandClosure} */ value;
constructor() {
}
}