Files
node-metaverse/lib/classes/llsd/LLSDToken.ts
2025-01-17 23:53:31 +00:00

13 lines
224 B
TypeScript

import type { LLSDTokenType } from './LLSDTokenType';
export interface LLSDToken
{
type: LLSDTokenType;
value: string;
rawValue: string;
dataContainer: {
input: string,
index: number
}
}