/** * Converts a given CSS selector into HTML * (No this is not an Emmet substitute, so it is limited to only one element) * * @param selector - The CSS selector to convert * @return The parsed HTML * * @example * * ```ts * selectorToHTML('#id.class-name'); * // -> '
' * ``` */ export default function selectorToHTML(selector: string): string;