30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
"""Stub file for meta.py"""
|
|
# ------------------- DO NOT EDIT ----------------------
|
|
# This file was generated by `scripts/pyi_generator.py`!
|
|
# ------------------------------------------------------
|
|
|
|
from typing import Dict, Union, overload, Optional
|
|
from reflex.components.component import Component
|
|
from reflex.vars import Var, BaseVar, ComputedVar
|
|
from reflex.event import EventChain
|
|
|
|
class Title(Component):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, **props) -> "Title": ... # type: ignore
|
|
|
|
class Meta(Component):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, char_set: Optional[str] = None, content: Optional[str] = None, name: Optional[str] = None, property: Optional[str] = None, http_equiv: Optional[str] = None, **props) -> "Meta": ... # type: ignore
|
|
|
|
class Description(Meta):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, name: Optional[str] = None, **props) -> "Description": ... # type: ignore
|
|
|
|
class Image(Meta):
|
|
@overload
|
|
@classmethod
|
|
def create(cls, *children, property: Optional[str] = None, **props) -> "Image": ... # type: ignore
|