UNPKG

@scalar/types

Version:

Types to work with Scalar packages

11 lines 449 B
import type { ApiReferenceConfigurationWithMultipleSources } from './types.js'; /** * The configuration for the static HTML rendering using the CDN. * * It's the ApiReferenceConfiguration, but extended with the `pageTitle` and `cdn` options. */ export type HtmlRenderingConfiguration = Partial<ApiReferenceConfigurationWithMultipleSources> & { pageTitle: string; cdn: string; }; //# sourceMappingURL=html-rendering-configuration.d.ts.map