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