mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-11 08:57:11 +01:00
13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
|
import { SlashCommandClosure } from './SlashCommandClosure.js';
|
||
|
|
||
|
export class SlashCommandNamedArgumentAssignment {
|
||
|
/**@type {number}*/ start;
|
||
|
/**@type {number}*/ end;
|
||
|
/**@type {string}*/ name;
|
||
|
/**@type {string|SlashCommandClosure}*/ value;
|
||
|
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|