This repository was archived by the owner on Jan 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ async function processStyleSheets() {
2626 isProcessing = false ;
2727}
2828
29- export function createBuildIn ( ) : void {
29+ export async function createBuildIn ( ) : Promise < void > {
3030 if ( typeof globalStyleSheetPromise === 'undefined' ) createGlobalStyleSheetPromise ( ) ;
3131 if ( ! isProcessing && styleSheetQueue . length > 0 ) {
3232 isProcessing = true ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ async function processStyleSheets() {
2626 isProcessing = false ;
2727}
2828
29- export function globalBuildIn ( ) : void {
29+ export async function globalBuildIn ( ) : Promise < void > {
3030 if ( typeof globalStyleSheetPromise === 'undefined' ) createGlobalStyleSheetPromise ( ) ;
3131 if ( ! isProcessing && styleSheetQueue . length > 0 ) {
3232 isProcessing = true ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ async function processStyleSheets() {
2626 isProcessing = false ;
2727}
2828
29- export function setBuildIn ( ) : void {
29+ export async function setBuildIn ( ) : Promise < void > {
3030 if ( typeof globalStyleSheetPromise === 'undefined' ) createGlobalStyleSheetPromise ( ) ;
3131 if ( ! isProcessing && styleSheetQueue . length > 0 ) {
3232 isProcessing = true ;
You can’t perform that action at this time.
0 commit comments