fix(core): update

This commit is contained in:
2024-01-15 19:42:15 +01:00
parent e473364d40
commit 0b2f6715e0
15 changed files with 185 additions and 44 deletions

View File

@@ -2,6 +2,9 @@ import { html } from '@design.estate/dees-element';
import { DeesUpdater } from './dees-updater.js';
export const demoFunc = () => {
export const demoFunc = async () => {
const updater = await DeesUpdater.createAndShow();
setTimeout(async () => {
await updater.destroy();
}, 10000);
}