UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

9 lines (8 loc) 560 B
import type { SSRElement } from '../../types/public/internal.js'; import type { AssetsPrefix, StylesheetAsset } from '../app/types.js'; export declare function createAssetLink(href: string, base?: string, assetsPrefix?: AssetsPrefix): string; export declare function createStylesheetElementSet(stylesheets: StylesheetAsset[], base?: string, assetsPrefix?: AssetsPrefix): Set<SSRElement>; export declare function createModuleScriptElement(script: { type: 'inline' | 'external'; value: string; }, base?: string, assetsPrefix?: AssetsPrefix): SSRElement;