Files
node-metaverse/lib/classes/llsd/LLSDToken.ts

13 lines
219 B
TypeScript

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