Website Structure

This commit is contained in:
supalerk-ar66 2026-01-13 10:46:40 +07:00
parent 62812f2090
commit 71f0676a62
22365 changed files with 4265753 additions and 791 deletions

View file

@ -0,0 +1,17 @@
import { BaseComponent } from '../../component.js';
import type { ErrorCauseProps } from '../../types.js';
/**
* Displays the Error cause as a formatted value
*/
export declare class ErrorCause extends BaseComponent<ErrorCauseProps> {
cssFile: URL;
/**
* The toHTML method is used to output the HTML for the
* web view
*/
toHTML(props: ErrorCause['$props']): Promise<string>;
/**
* The toANSI method is used to output the text for the console
*/
toANSI(props: ErrorCauseProps): Promise<string>;
}

View file

@ -0,0 +1,8 @@
import {
ErrorCause
} from "../../../chunk-X53OIOJH.js";
import "../../../chunk-4L7RY2JA.js";
import "../../../chunk-PE3GG3TN.js";
export {
ErrorCause
};

View file

@ -0,0 +1,19 @@
import { BaseComponent } from '../../component.js';
import type { ErrorInfoProps } from '../../types.js';
/**
* Displays the error info including the response status text,
* error name, error message and the hint.
*/
export declare class ErrorInfo extends BaseComponent<ErrorInfoProps> {
cssFile: URL;
scriptFile: URL;
/**
* The toHTML method is used to output the HTML for the
* web view
*/
toHTML(props: ErrorInfoProps): Promise<string>;
/**
* The toANSI method is used to output the text for the console
*/
toANSI(props: ErrorInfoProps): Promise<string>;
}

View file

@ -0,0 +1,8 @@
import {
ErrorInfo
} from "../../../chunk-OIJ3WD7L.js";
import "../../../chunk-4L7RY2JA.js";
import "../../../chunk-PE3GG3TN.js";
export {
ErrorInfo
};

View file

@ -0,0 +1,18 @@
import { BaseComponent } from '../../component.js';
import type { ErrorMetadataProps } from '../../types.js';
/**
* Displays the error metadata as cards
*/
export declare class ErrorMetadata extends BaseComponent<ErrorMetadataProps> {
#private;
cssFile: URL;
/**
* The toHTML method is used to output the HTML for the
* web view
*/
toHTML(props: ErrorMetadataProps): Promise<string>;
/**
* The toANSI method is used to output the text for the console
*/
toANSI(): Promise<string>;
}

View file

@ -0,0 +1,7 @@
import {
ErrorMetadata
} from "../../../chunk-P36L72PL.js";
import "../../../chunk-PE3GG3TN.js";
export {
ErrorMetadata
};

View file

@ -0,0 +1,20 @@
import { BaseComponent } from '../../component.js';
import type { ErrorStackProps } from '../../types.js';
/**
* Displays the formatted and raw error stack along with the
* source code for individual stack frames
*/
export declare class ErrorStack extends BaseComponent<ErrorStackProps> {
#private;
cssFile: URL;
scriptFile: URL;
/**
* The toHTML method is used to output the HTML for the
* web view
*/
toHTML(props: ErrorStackProps): Promise<string>;
/**
* The toANSI method is used to output the text for the console
*/
toANSI(props: ErrorStackProps): Promise<string>;
}

View file

@ -0,0 +1,8 @@
import {
ErrorStack
} from "../../../chunk-EJH674NB.js";
import "../../../chunk-4L7RY2JA.js";
import "../../../chunk-PE3GG3TN.js";
export {
ErrorStack
};

View file

@ -0,0 +1,18 @@
import { BaseComponent } from '../../component.js';
import type { ErrorStackSourceProps } from '../../types.js';
/**
* Pretty prints the stack frame source code with syntax
* highlighting.
*/
export declare class ErrorStackSource extends BaseComponent<ErrorStackSourceProps> {
cssFile: URL;
/**
* The toHTML method is used to output the HTML for the
* web view
*/
toHTML(props: ErrorStackSourceProps): Promise<string>;
/**
* The toANSI method is used to output the text for the console
*/
toANSI(props: ErrorStackSourceProps): Promise<string>;
}

View file

@ -0,0 +1,8 @@
import {
ErrorStackSource
} from "../../../chunk-7QV3D5YX.js";
import "../../../chunk-4L7RY2JA.js";
import "../../../chunk-PE3GG3TN.js";
export {
ErrorStackSource
};

View file

@ -0,0 +1,19 @@
import { BaseComponent } from '../../component.js';
import type { ComponentSharedProps } from '../../types.js';
/**
* Renders the header for the error page. It contains only the
* theme-switcher for now
*/
export declare class Header extends BaseComponent<ComponentSharedProps> {
cssFile: URL;
scriptFile: URL;
/**
* The toHTML method is used to output the HTML for the
* web view
*/
toHTML(): Promise<string>;
/**
* The toANSI method is used to output the text for the console
*/
toANSI(): Promise<string>;
}

View file

@ -0,0 +1,7 @@
import {
Header
} from "../../../chunk-AUGPHE32.js";
import "../../../chunk-PE3GG3TN.js";
export {
Header
};

View file

@ -0,0 +1,22 @@
import { BaseComponent } from '../../component.js';
import type { LayoutProps } from '../../types.js';
/**
* Layout component renders the HTML structure for the document
* along with the styles for the global elements.
*
* You can define a custom Layout if you want to modify the HTML
* structure or the CSS variables for the colors.
*/
export declare class Layout extends BaseComponent<LayoutProps> {
cssFile: URL;
scriptFile: URL;
/**
* The toHTML method is used to output the HTML for the
* web view
*/
toHTML(props: LayoutProps): Promise<string>;
/**
* The toANSI method is used to output the text for the console
*/
toANSI(props: LayoutProps): Promise<string>;
}

View file

@ -0,0 +1,7 @@
import {
Layout
} from "../../../chunk-CM7DWJNZ.js";
import "../../../chunk-PE3GG3TN.js";
export {
Layout
};