Skip to content

Commit 5a09eca

Browse files
committed
fix(tweakpane): use any for binding value instead
1 parent df20200 commit 5a09eca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ root = true
44
[*]
55
charset = utf-8
66
indent_style = space
7-
indent_size = 2
7+
indent_size = 4
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

libs/tweakpane/src/lib/binding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function provideTweakBindingAsHost<TIn, TOut>(inOut?: { in: (value: TIn)
3838
],
3939
})
4040
export class NgtTweakBinding<TValue> {
41-
value = model.required<TValue>();
41+
value = model.required<any>();
4242

4343
private debounce = inject(NgtTweakDebounce);
4444
private label = inject(NgtTweakLabel);

0 commit comments

Comments
 (0)