Files
node-metaverse/lib/classes/python/PythonToken.ts

8 lines
133 B
TypeScript
Raw Normal View History

2023-11-09 18:08:56 +00:00
import { PythonTokenType } from './PythonTokenType';
export interface PythonToken
{
type: PythonTokenType;
value: string;
}