Files
node-metaverse/lib/classes/python/PythonToken.ts
2023-11-09 18:09:14 +00:00

8 lines
133 B
TypeScript

import { PythonTokenType } from './PythonTokenType';
export interface PythonToken
{
type: PythonTokenType;
value: string;
}