mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-14 10:24:47 +01:00
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
|
import { SlashCommandClosure } from './SlashCommandClosure.js';
|
||
|
|
||
|
export class SlashCommandUnnamedArgumentAssignment {
|
||
|
/**@type {number}*/ start;
|
||
|
/**@type {number}*/ end;
|
||
|
/**@type {string|SlashCommandClosure}*/ value;
|
||
|
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|