export class CSSResult {
#styleSheet;
constructor(strings) {
this.#styleSheet = new CSSStyleSheet();
this.#styleSheet.replaceSync(strings[0]);
}
get styleSheet() {
return this.#styleSheet;
}
}
export const css = (strings) => new CSSResult(strings).styleSheet;