UNPKG

astro

Version:

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

9 lines (8 loc) 227 B
interface Options { escapeEverything: boolean; isIdentifier: boolean; quotes: 'single' | 'double'; wrap: boolean; } export default function cssesc(string: string, options?: Partial<Options>): string; export {};