Skip to content

Commit

Permalink
updates for latest lume/cli (which is not published yet so the cli ve…
Browse files Browse the repository at this point in the history
…rsion still shows as 0.10, but it will be 0.11), update build output
  • Loading branch information
trusktr committed Nov 7, 2023
1 parent fcb26f8 commit 0b06079
Show file tree
Hide file tree
Showing 17 changed files with 109 additions and 124 deletions.
5 changes: 3 additions & 2 deletions dist/createSignalFunction.d.ts
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
2 changes: 1 addition & 1 deletion dist/createSignalFunction.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/createSignalFunction.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/createSignalFunction.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0b06079

Please sign in to comment.