25 lines
394 B
Python
25 lines
394 B
Python
from typing import Literal, TypedDict
|
|
|
|
|
|
class SystemPrompts(TypedDict):
|
|
html_tailwind: str
|
|
react_tailwind: str
|
|
bootstrap: str
|
|
ionic_tailwind: str
|
|
vue_tailwind: str
|
|
vue_css: str
|
|
svg: str
|
|
flutter:str
|
|
|
|
|
|
Stack = Literal[
|
|
"html_tailwind",
|
|
"react_tailwind",
|
|
"bootstrap",
|
|
"ionic_tailwind",
|
|
"vue_tailwind",
|
|
"vue_css",
|
|
"svg",
|
|
"flutter",
|
|
]
|