@absolutejs/absolute 0.12.4 → 0.12.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,3 @@
1
- import './angularPatch';
2
1
  export * from './build';
3
2
  export * from './pageHandlers';
4
3
  export * from './lookup';
@@ -9,13 +9,6 @@ type HandleSveltePageRequest = {
9
9
  };
10
10
  export declare const handleSveltePageRequest: HandleSveltePageRequest;
11
11
  export declare const handleVuePageRequest: <Props extends Record<string, unknown> = Record<never, never>>(_PageComponent: VueComponent<Props>, pagePath: string, indexPath: string, headTag?: `<head>${string}</head>`, ...props: keyof Props extends never ? [] : [props: Props]) => Promise<Response>;
12
- export declare const handleAngularPageRequest: (PageComponent: any, indexPath: string, props?: {
13
- initialCount?: number;
14
- cssPath?: string;
15
- }, template?: string | Document, tokens?: {
16
- CSS_PATH?: any;
17
- INITIAL_COUNT?: any;
18
- }) => Promise<Response>;
19
12
  export declare const handleHTMLPageRequest: (html: string) => Bun.BunFile;
20
13
  export declare const handleHTMXPageRequest: (htmx: string) => Bun.BunFile;
21
14
  export declare const handlePageRequest: <Component>(PageComponent: Component, ...props: PropsArgs<Component>) => void;