1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-07-29 07:00:16 +02:00

💥 rename signals to observables

This commit is contained in:
2023-11-24 20:41:04 +01:00
parent fc4037f3eb
commit 58b73dcbc7
44 changed files with 372 additions and 333 deletions

4
dist/esm.d.ts vendored
View File

@@ -153,10 +153,10 @@ export const scope: {
preventDefault<T extends boolean>(prevent: T): T,
/**
* This represents reference to the current host element — `scope.host()`.
* It can be also used to register Addon (function to be called when component is initized)
* It can be also used to register Addon(s) (functions to be called when component is initized)
* — `scope.host(on.connected(console.log))`.
* */
host: ddeElementAddon<any>,
host: (...addons: ddeElementAddon<any>[])=> HTMLElement,
state: Scope[],
/** Adds new child scope. All attributes are inherited by default. */