13 lines
224 B
TypeScript
13 lines
224 B
TypeScript
import type { LLSDTokenType } from './LLSDTokenType';
|
|
|
|
export interface LLSDToken
|
|
{
|
|
type: LLSDTokenType;
|
|
value: string;
|
|
rawValue: string;
|
|
dataContainer: {
|
|
input: string,
|
|
index: number
|
|
}
|
|
}
|