0.1.0 #1

Merged
Thilawyn merged 87 commits from next into master 2025-01-18 00:54:42 +01:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit f50adbf119 - Show all commits

View File

@@ -119,6 +119,9 @@ export class Reffuse<
}
// TODO: allow passing runtime
export const make = <R = never>(): Reffuse<R> =>
export const make = <R = never>(): Reffuse<never, R, R> =>
new Reffuse(Runtime.defaultRuntime)
export const makeWithRuntime = <R = never>() =>
<RuntimeR>(runtime: Runtime.Runtime<RuntimeR>): Reffuse<RuntimeR, R, R> =>
new Reffuse(runtime)

View File

@@ -1 +1,2 @@
export * as Reffuse from "./Reffuse.js"
export * as ReffuseReactContext from "./ReffuseReactContext.js"