Remove page.pyi: it's out of date, and not necessary (#2924)

Fix #2908
This commit is contained in:
Masen Furer 2024-03-26 12:21:29 -07:00 committed by GitHub
parent f27eae7655
commit 012151132e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +0,0 @@
"""The page decorator and associated variables and functions."""
from reflex.components.component import Component
from reflex.event import EventHandler
DECORATED_PAGES: list
def page(
route: str | None = None,
title: str | None = None,
image: str | None = None,
description: str | None = None,
meta: str | None = None,
script_tags: list[Component] | None = None,
on_load: EventHandler | list[EventHandler] | None = None,
): ...
def get_decorated_pages() -> list[dict]: ...