HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: /var/www/indoadvisory_new/webapp/node_modules/@hono/vite-build/dist/entry/index.d.ts
type EntryContentHookOptions = {
    staticPaths: string[];
};
type EntryContentHook = (appName: string, options?: EntryContentHookOptions) => string | Promise<string>;
declare const presets: readonly ["hono", "hono/tiny", "hono/quick"];
type Preset = (typeof presets)[number];
type GetEntryContentOptions = {
    entry: string[];
    entryContentBeforeHooks?: EntryContentHook[];
    entryContentAfterHooks?: EntryContentHook[];
    /**
     * Explicitly specify the default export for the app. Make sure your export
     * incorporates the app passed as the `appName` argument.
     *
     * @default `export default ${appName}`
     */
    entryContentDefaultExportHook?: EntryContentHook;
    staticPaths?: string[];
    /**
     * @default `hono`
     */
    preset?: Preset;
};
declare const getEntryContent: (options: GetEntryContentOptions) => Promise<string>;

export { EntryContentHook, EntryContentHookOptions, GetEntryContentOptions, Preset, getEntryContent };