16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* A version of makeStaticStyles() that accepts build output as an input and skips all runtime transforms & DOM insertion.
|
|
*
|
|
* @internal
|
|
*/
|
|
function __staticCSS() {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
function useStaticStyles() {}
|
|
return useStaticStyles;
|
|
}
|
|
|
|
exports.__staticCSS = __staticCSS;
|
|
//# sourceMappingURL=__staticCSS.cjs.js.map
|