• Extract scoped style sheets as string

    const styleSheets = extractStyles()

    styleSheets.forEach((sheetText) => {
    const style = document.createElement('style')
    style.textContent = sheetText
    document.head.append(style)
    })

    Returns string[]

Generated using TypeDoc