@scalar/types
Version:
Types to work with Scalar packages
11 lines • 449 B
TypeScript
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