Migrate ui/ (#14)

* Rename js to ts

* Fix all tsc errors
This commit is contained in:
Chenlei Hu
2024-06-14 20:53:25 -04:00
committed by GitHub
parent 1376459cd8
commit 0ef74392ca
8 changed files with 30 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
import { api } from "./api";
import { ComfyDialog as _ComfyDialog } from "./ui/dialog.js";
import { toggleSwitch } from "./ui/toggleSwitch.js";
import { ComfySettingsDialog } from "./ui/settings.js";
import { ComfyDialog as _ComfyDialog } from "./ui/dialog";
import { toggleSwitch } from "./ui/toggleSwitch";
import { ComfySettingsDialog } from "./ui/settings";
import { ComfyApp, app } from "./app";
export const ComfyDialog = _ComfyDialog;