UNPKG
@dualjack/svelte-tools
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
⚠️⚠️⚠️ **Still in development** ⚠️⚠️⚠️
github.com/dualjack/svelte-tools
dualjack/svelte-tools
@dualjack/svelte-tools
/
dist
/
tools
/
computed
/
computed.svelte.d.ts
5 lines
(4 loc)
•
118 B
TypeScript
View Raw
1
2
3
4
5
export
interface
Computed
<
T
>
{
get
current
(): T
; }
export declare function
computed
<
T
>(
cb: (
)
=> T): Computed<T>;