1 import { SlashCommandClosure } from './SlashCommandClosure.js';
2
3 export class SlashCommandNamedArgumentAssignment {
4 /** @type {number} */ start;
5 /** @type {number} */ end;
6 /** @type {string} */ name;
7 /** @type {string|SlashCommandClosure} */ value;
8
9
10 constructor() {
11 }
12 }