File size: 287 Bytes
b82d373
 
 
 
 
 
 
 
 
 
 
 
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() {
    }
}