Spaces:
Running
Running
File size: 295 Bytes
519a20c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { SlashCommandClosure } from './SlashCommandClosure.js';
export class SlashCommandNamedArgumentAssignment {
/** @type {number} */ start;
/** @type {number} */ end;
/** @type {string} */ name;
/** @type {string|SlashCommandClosure} */ value;
constructor() {
}
}
|