7 lines
87 B
Python
7 lines
87 B
Python
from typing import TypedDict
|
|
|
|
|
|
class IGraphNode(TypedDict):
|
|
id: str
|
|
type: str
|
|
|