Type alias SsrRenderer

SsrRenderer: ((url, options?) => Promise<{
    dependencies: string[];
    html: string;
}>)

Type declaration

    • (url, options?): Promise<{
          dependencies: string[];
          html: string;
      }>
    • Parameters

      • url: string | URL
      • Optional options: {
            manifest?: Record<string, string[]>;
            [key: string]: any;
        }
        • [key: string]: any
        • Optional manifest?: Record<string, string[]>

      Returns Promise<{
          dependencies: string[];
          html: string;
      }>

Generated using TypeDoc