-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updates for latest lume/cli (which is not published yet so the cli ve…
…rsion still shows as 0.10, but it will be 0.11), update build output
- Loading branch information
Showing
17 changed files
with
109 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import type { Setter } from 'solid-js'; | ||
import type { SignalOptions } from 'solid-js/types/reactive/signal'; | ||
export type SignalFunction<T> = { | ||
(v?: T | ((prev: T) => T)): T; | ||
}; | ||
(): T; | ||
} & Setter<T>; | ||
export declare function createSignalFunction<T>(): SignalFunction<T | undefined>; | ||
export declare function createSignalFunction<T>(value: T, options?: SignalOptions<T>): SignalFunction<T>; | ||
//# sourceMappingURL=createSignalFunction.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.