Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
14
node_modules/astro/dist/runtime/client/dev-toolbar/ui-library/window.d.ts
generated
vendored
Normal file
14
node_modules/astro/dist/runtime/client/dev-toolbar/ui-library/window.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export declare const placements: readonly ["bottom-left", "bottom-center", "bottom-right"];
|
||||
export type Placement = (typeof placements)[number];
|
||||
export declare function isValidPlacement(value: string): value is Placement;
|
||||
export declare class DevToolbarWindow extends HTMLElement {
|
||||
shadowRoot: ShadowRoot;
|
||||
_placement: Placement;
|
||||
get placement(): "bottom-left" | "bottom-center" | "bottom-right";
|
||||
set placement(value: "bottom-left" | "bottom-center" | "bottom-right");
|
||||
static observedAttributes: string[];
|
||||
constructor();
|
||||
connectedCallback(): Promise<void>;
|
||||
attributeChangedCallback(): void;
|
||||
updateStyle(): void;
|
||||
}
|
Reference in New Issue
Block a user