8 lines
146 B
Python
8 lines
146 B
Python
from typing import TypedDict
|
|
|
|
from .enums import Permission
|
|
|
|
|
|
class RoleConfig(TypedDict):
|
|
description: str
|
|
permissions: list[Permission]
|