8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
import { PythonTokenType } from './PythonTokenType';
|
|
|
|
export interface PythonToken
|
|
{
|
|
type: PythonTokenType;
|
|
value: string;
|
|
}
|