svelte-tweakpane-ui 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/control/Button.svelte +1 -1
  2. package/dist/control/ButtonGrid.svelte.d.ts +30 -30
  3. package/dist/control/Checkbox.svelte.d.ts +8 -8
  4. package/dist/control/Color.svelte.d.ts +96 -96
  5. package/dist/control/CubicBezier.svelte.d.ts +41 -41
  6. package/dist/control/Image.svelte.d.ts +30 -30
  7. package/dist/control/IntervalSlider.svelte.d.ts +105 -95
  8. package/dist/control/List.svelte.d.ts +20 -20
  9. package/dist/control/Point.svelte +1 -1
  10. package/dist/control/Point.svelte.d.ts +115 -114
  11. package/dist/control/RadioGrid.svelte +1 -1
  12. package/dist/control/RadioGrid.svelte.d.ts +59 -59
  13. package/dist/control/Ring.svelte.d.ts +102 -107
  14. package/dist/control/RotationEuler.svelte +1 -1
  15. package/dist/control/RotationEuler.svelte.d.ts +106 -106
  16. package/dist/control/RotationQuaternion.svelte +1 -1
  17. package/dist/control/RotationQuaternion.svelte.d.ts +104 -104
  18. package/dist/control/Slider.svelte.d.ts +84 -84
  19. package/dist/control/Text.svelte.d.ts +24 -24
  20. package/dist/control/Textarea.svelte +1 -1
  21. package/dist/control/Textarea.svelte.d.ts +33 -33
  22. package/dist/control/Wheel.svelte.d.ts +97 -97
  23. package/dist/core/Binding.svelte +1 -1
  24. package/dist/core/Blade.svelte +1 -1
  25. package/dist/core/Pane.svelte.d.ts +295 -275
  26. package/dist/extra/AutoValue.svelte.d.ts +8 -8
  27. package/dist/extra/Element.svelte.d.ts +23 -23
  28. package/dist/internal/ClsPad.svelte +1 -1
  29. package/dist/internal/GenericBinding.svelte.d.ts +8 -8
  30. package/dist/internal/GenericBladeFolding.svelte.d.ts +24 -24
  31. package/dist/internal/GenericInput.svelte.d.ts +8 -8
  32. package/dist/internal/GenericInputFolding.svelte.d.ts +78 -78
  33. package/dist/internal/GenericMonitor.svelte.d.ts +76 -76
  34. package/dist/internal/GenericSlider.svelte.d.ts +76 -76
  35. package/dist/internal/InternalMonitorBoolean.svelte.d.ts +82 -82
  36. package/dist/internal/InternalMonitorNumber.svelte.d.ts +101 -101
  37. package/dist/internal/InternalMonitorString.svelte.d.ts +87 -87
  38. package/dist/internal/InternalPaneDraggable.svelte.d.ts +76 -76
  39. package/dist/internal/InternalPaneFixed.svelte.d.ts +26 -26
  40. package/dist/internal/InternalPaneInline.svelte.d.ts +13 -13
  41. package/dist/monitor/FpsGraph.svelte.d.ts +90 -90
  42. package/dist/monitor/Monitor.svelte.d.ts +233 -233
  43. package/dist/monitor/Profiler.svelte.d.ts +131 -131
  44. package/dist/monitor/WaveformMonitor.svelte.d.ts +104 -107
  45. package/dist/theme.d.ts +1 -1
  46. package/package.json +15 -16
@@ -2,81 +2,13 @@ import { SvelteComponent } from 'svelte';
2
2
  import type { BooleanMonitorParams } from '@tweakpane/core';
3
3
  export type InternalMonitorBooleanOptions = BooleanMonitorParams;
4
4
  declare const __propDef: {
5
- props: Omit<
6
- Omit<
7
- {
8
- /**
9
- * The binding's target object with values to manipulate.
10
- * @bindable
11
- */
12
- object: import('@tweakpane/core').Bindable & Record<string, boolean>;
13
- /** The key for the value in the target `object` that the control should manipulate. */
14
- key: string;
15
- /**
16
- * Prevent interactivity and gray out the control.
17
- * @default `false`
18
- */
19
- disabled?: boolean | undefined;
20
- /**
21
- * Text displayed next to control.
22
- * @default `undefined`
23
- */
24
- label?: string | undefined;
25
- /**
26
- * Tweakpane's internal options object.
27
- *
28
- * See [`BindingParams`](https://tweakpane.github.io/docs/api/types/BindingParams.html).
29
- *
30
- * Valid types are contingent on the type of the value `key` points to in `object`.
31
- *
32
- * This is intended internal use, when implementing convenience components wrapping Binding's
33
- * functionality. Options of interest are instead exposed as top-level props in _Svelte
34
- * Tweakpane UI_.
35
- * @default `undefined`
36
- */
37
- options?: BooleanMonitorParams | undefined;
38
- /**
39
- * Custom color scheme.
40
- *
41
- * @default `undefined` \
42
- * Inherits default Tweakpane theme equivalent to `ThemeUtils.presets.standard`, or the theme
43
- * set with `setGlobalDefaultTheme()`.
44
- */
45
- theme?: import('..').Theme | undefined;
46
- /**
47
- * Reference to internal Tweakpane
48
- * [`BindingApi`](https://tweakpane.github.io/docs/api/classes/_internal_.BindingApi.html) for
49
- * this control.
50
- *
51
- * This property is exposed for advanced use cases only, such as when implementing convenience
52
- * components wrapping `<Binding>`'s functionality.
53
- *
54
- * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
55
- *
56
- * @bindable
57
- * @readonly
58
- */
59
- ref?: import('./GenericMonitor.svelte').GenericMonitorRef | undefined;
60
- /**
61
- * Imported Tweakpane `TpPluginBundle` (aliased as `Plugin`) module to automatically register in
62
- * the `<Binding>`'s containing `<Pane>`.
63
- *
64
- * This property is exposed for advanced use cases only, such as when implementing convenience
65
- * components wrapping `<Binding>`'s functionality in combination with a Tweakpane plugin.
66
- *
67
- * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
68
- *
69
- * @default `undefined`
70
- */
71
- plugin?: import('@tweakpane/core').TpPluginBundle | undefined;
72
- },
73
- 'object' | 'key'
74
- > & {
75
- /**
76
- * A `boolean` value to monitor.
77
- */
78
- value: boolean;
79
- } & {
5
+ props: {
6
+ /**
7
+ * A `boolean` value to monitor.
8
+ * */
9
+ value: boolean;
10
+ } & Omit<
11
+ {
80
12
  /**
81
13
  * Number of past states to retain.
82
14
  * @default `1` \
@@ -99,14 +31,82 @@ declare const __propDef: {
99
31
  * Or `3` if value is `string` and `multiline` is `true`.
100
32
  */
101
33
  rows?: number | undefined;
102
- },
34
+ } & {
35
+ /**
36
+ * A `boolean` value to monitor.
37
+ */
38
+ value: boolean;
39
+ } & Omit<
40
+ {
41
+ /**
42
+ * The binding's target object with values to manipulate.
43
+ * @bindable
44
+ */
45
+ object: import('@tweakpane/core').Bindable & Record<string, boolean>;
46
+ /** The key for the value in the target `object` that the control should manipulate. */
47
+ key: string;
48
+ /**
49
+ * Prevent interactivity and gray out the control.
50
+ * @default `false`
51
+ */
52
+ disabled?: boolean | undefined;
53
+ /**
54
+ * Text displayed next to control.
55
+ * @default `undefined`
56
+ */
57
+ label?: string | undefined;
58
+ /**
59
+ * Tweakpane's internal options object.
60
+ *
61
+ * See [`BindingParams`](https://tweakpane.github.io/docs/api/types/BindingParams.html).
62
+ *
63
+ * Valid types are contingent on the type of the value `key` points to in `object`.
64
+ *
65
+ * This is intended internal use, when implementing convenience components wrapping Binding's
66
+ * functionality. Options of interest are instead exposed as top-level props in _Svelte
67
+ * Tweakpane UI_.
68
+ * @default `undefined`
69
+ */
70
+ options?: BooleanMonitorParams | undefined;
71
+ /**
72
+ * Custom color scheme.
73
+ *
74
+ * @default `undefined` \
75
+ * Inherits default Tweakpane theme equivalent to `ThemeUtils.presets.standard`, or the theme
76
+ * set with `setGlobalDefaultTheme()`.
77
+ */
78
+ theme?: import('..').Theme | undefined;
79
+ /**
80
+ * Reference to internal Tweakpane
81
+ * [`BindingApi`](https://tweakpane.github.io/docs/api/classes/_internal_.BindingApi.html) for
82
+ * this control.
83
+ *
84
+ * This property is exposed for advanced use cases only, such as when implementing convenience
85
+ * components wrapping `<Binding>`'s functionality.
86
+ *
87
+ * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
88
+ *
89
+ * @bindable
90
+ * @readonly
91
+ */
92
+ ref?: import('./GenericMonitor.svelte').GenericMonitorRef | undefined;
93
+ /**
94
+ * Imported Tweakpane `TpPluginBundle` (aliased as `Plugin`) module to automatically register in
95
+ * the `<Binding>`'s containing `<Pane>`.
96
+ *
97
+ * This property is exposed for advanced use cases only, such as when implementing convenience
98
+ * components wrapping `<Binding>`'s functionality in combination with a Tweakpane plugin.
99
+ *
100
+ * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
101
+ *
102
+ * @default `undefined`
103
+ */
104
+ plugin?: import('@tweakpane/core').TpPluginBundle | undefined;
105
+ },
106
+ 'object' | 'key'
107
+ >,
103
108
  'ref' | 'options' | 'plugin' | 'interval'
104
- > & {
105
- /**
106
- * A `boolean` value to monitor.
107
- * */
108
- value: boolean;
109
- };
109
+ >;
110
110
  events: {
111
111
  [evt: string]: CustomEvent<any>;
112
112
  };
@@ -2,106 +2,7 @@ import { SvelteComponent } from 'svelte';
2
2
  import type { NumberMonitorParams } from '@tweakpane/core';
3
3
  export type InternalMonitorNumberOptions = NumberMonitorParams;
4
4
  declare const __propDef: {
5
- props: Omit<
6
- Omit<
7
- {
8
- /**
9
- * The binding's target object with values to manipulate.
10
- * @bindable
11
- */
12
- object: import('@tweakpane/core').Bindable & Record<string, number>;
13
- /** The key for the value in the target `object` that the control should manipulate. */
14
- key: string;
15
- /**
16
- * Prevent interactivity and gray out the control.
17
- * @default `false`
18
- */
19
- disabled?: boolean | undefined;
20
- /**
21
- * Text displayed next to control.
22
- * @default `undefined`
23
- */
24
- label?: string | undefined;
25
- /**
26
- * Tweakpane's internal options object.
27
- *
28
- * See [`BindingParams`](https://tweakpane.github.io/docs/api/types/BindingParams.html).
29
- *
30
- * Valid types are contingent on the type of the value `key` points to in `object`.
31
- *
32
- * This is intended internal use, when implementing convenience components wrapping Binding's
33
- * functionality. Options of interest are instead exposed as top-level props in _Svelte
34
- * Tweakpane UI_.
35
- * @default `undefined`
36
- */
37
- options?: NumberMonitorParams | undefined;
38
- /**
39
- * Custom color scheme.
40
- *
41
- * @default `undefined` \
42
- * Inherits default Tweakpane theme equivalent to `ThemeUtils.presets.standard`, or the theme
43
- * set with `setGlobalDefaultTheme()`.
44
- */
45
- theme?: import('..').Theme | undefined;
46
- /**
47
- * Reference to internal Tweakpane
48
- * [`BindingApi`](https://tweakpane.github.io/docs/api/classes/_internal_.BindingApi.html) for
49
- * this control.
50
- *
51
- * This property is exposed for advanced use cases only, such as when implementing convenience
52
- * components wrapping `<Binding>`'s functionality.
53
- *
54
- * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
55
- *
56
- * @bindable
57
- * @readonly
58
- */
59
- ref?: import('./GenericMonitor.svelte').GenericMonitorRef | undefined;
60
- /**
61
- * Imported Tweakpane `TpPluginBundle` (aliased as `Plugin`) module to automatically register in
62
- * the `<Binding>`'s containing `<Pane>`.
63
- *
64
- * This property is exposed for advanced use cases only, such as when implementing convenience
65
- * components wrapping `<Binding>`'s functionality in combination with a Tweakpane plugin.
66
- *
67
- * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
68
- *
69
- * @default `undefined`
70
- */
71
- plugin?: import('@tweakpane/core').TpPluginBundle | undefined;
72
- },
73
- 'object' | 'key'
74
- > & {
75
- /**
76
- * A `number` value to monitor.
77
- */
78
- value: number;
79
- } & {
80
- /**
81
- * Number of past states to retain.
82
- * @default `1` \
83
- * Or `64` if value is `number` and `graph` is `true`.
84
- */
85
- bufferSize?: number | undefined;
86
- /**
87
- * Time between value samples in milliseconds.
88
- *
89
- * Useful when `graph` is true. Defaults to reactive value updates only (`interval={0}`).
90
- * @default `0`
91
- */
92
- interval?: number | undefined;
93
- /**
94
- * Number of visible rows of state history.
95
- *
96
- * If `bufferSize` is larger, then the value window will scroll once state history exceeds
97
- * row count.
98
- * @default `1` \
99
- * Or `3` if value is `string` and `multiline` is `true`.
100
- */
101
- rows?: number | undefined;
102
- },
103
- 'ref' | 'options' | 'plugin'
104
- > & {
5
+ props: {
105
6
  /**
106
7
  * A `number` value to monitor.
107
8
  * */
@@ -127,7 +28,106 @@ declare const __propDef: {
127
28
  * @default `false`
128
29
  * */
129
30
  graph?: boolean | undefined;
130
- };
31
+ } & Omit<
32
+ {
33
+ /**
34
+ * Number of past states to retain.
35
+ * @default `1` \
36
+ * Or `64` if value is `number` and `graph` is `true`.
37
+ */
38
+ bufferSize?: number | undefined;
39
+ /**
40
+ * Time between value samples in milliseconds.
41
+ *
42
+ * Useful when `graph` is true. Defaults to reactive value updates only (`interval={0}`).
43
+ * @default `0`
44
+ */
45
+ interval?: number | undefined;
46
+ /**
47
+ * Number of visible rows of state history.
48
+ *
49
+ * If `bufferSize` is larger, then the value window will scroll once state history exceeds
50
+ * row count.
51
+ * @default `1` \
52
+ * Or `3` if value is `string` and `multiline` is `true`.
53
+ */
54
+ rows?: number | undefined;
55
+ } & {
56
+ /**
57
+ * A `number` value to monitor.
58
+ */
59
+ value: number;
60
+ } & Omit<
61
+ {
62
+ /**
63
+ * The binding's target object with values to manipulate.
64
+ * @bindable
65
+ */
66
+ object: import('@tweakpane/core').Bindable & Record<string, number>;
67
+ /** The key for the value in the target `object` that the control should manipulate. */
68
+ key: string;
69
+ /**
70
+ * Prevent interactivity and gray out the control.
71
+ * @default `false`
72
+ */
73
+ disabled?: boolean | undefined;
74
+ /**
75
+ * Text displayed next to control.
76
+ * @default `undefined`
77
+ */
78
+ label?: string | undefined;
79
+ /**
80
+ * Tweakpane's internal options object.
81
+ *
82
+ * See [`BindingParams`](https://tweakpane.github.io/docs/api/types/BindingParams.html).
83
+ *
84
+ * Valid types are contingent on the type of the value `key` points to in `object`.
85
+ *
86
+ * This is intended internal use, when implementing convenience components wrapping Binding's
87
+ * functionality. Options of interest are instead exposed as top-level props in _Svelte
88
+ * Tweakpane UI_.
89
+ * @default `undefined`
90
+ */
91
+ options?: NumberMonitorParams | undefined;
92
+ /**
93
+ * Custom color scheme.
94
+ *
95
+ * @default `undefined` \
96
+ * Inherits default Tweakpane theme equivalent to `ThemeUtils.presets.standard`, or the theme
97
+ * set with `setGlobalDefaultTheme()`.
98
+ */
99
+ theme?: import('..').Theme | undefined;
100
+ /**
101
+ * Reference to internal Tweakpane
102
+ * [`BindingApi`](https://tweakpane.github.io/docs/api/classes/_internal_.BindingApi.html) for
103
+ * this control.
104
+ *
105
+ * This property is exposed for advanced use cases only, such as when implementing convenience
106
+ * components wrapping `<Binding>`'s functionality.
107
+ *
108
+ * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
109
+ *
110
+ * @bindable
111
+ * @readonly
112
+ */
113
+ ref?: import('./GenericMonitor.svelte').GenericMonitorRef | undefined;
114
+ /**
115
+ * Imported Tweakpane `TpPluginBundle` (aliased as `Plugin`) module to automatically register in
116
+ * the `<Binding>`'s containing `<Pane>`.
117
+ *
118
+ * This property is exposed for advanced use cases only, such as when implementing convenience
119
+ * components wrapping `<Binding>`'s functionality in combination with a Tweakpane plugin.
120
+ *
121
+ * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
122
+ *
123
+ * @default `undefined`
124
+ */
125
+ plugin?: import('@tweakpane/core').TpPluginBundle | undefined;
126
+ },
127
+ 'object' | 'key'
128
+ >,
129
+ 'ref' | 'options' | 'plugin'
130
+ >;
131
131
  events: {
132
132
  [evt: string]: CustomEvent<any>;
133
133
  };
@@ -2,81 +2,18 @@ import { SvelteComponent } from 'svelte';
2
2
  import type { StringMonitorParams } from '@tweakpane/core';
3
3
  export type InternalMonitorStringOptions = StringMonitorParams;
4
4
  declare const __propDef: {
5
- props: Omit<
6
- Omit<
7
- {
8
- /**
9
- * The binding's target object with values to manipulate.
10
- * @bindable
11
- */
12
- object: import('@tweakpane/core').Bindable & Record<string, string>;
13
- /** The key for the value in the target `object` that the control should manipulate. */
14
- key: string;
15
- /**
16
- * Prevent interactivity and gray out the control.
17
- * @default `false`
18
- */
19
- disabled?: boolean | undefined;
20
- /**
21
- * Text displayed next to control.
22
- * @default `undefined`
23
- */
24
- label?: string | undefined;
25
- /**
26
- * Tweakpane's internal options object.
27
- *
28
- * See [`BindingParams`](https://tweakpane.github.io/docs/api/types/BindingParams.html).
29
- *
30
- * Valid types are contingent on the type of the value `key` points to in `object`.
31
- *
32
- * This is intended internal use, when implementing convenience components wrapping Binding's
33
- * functionality. Options of interest are instead exposed as top-level props in _Svelte
34
- * Tweakpane UI_.
35
- * @default `undefined`
36
- */
37
- options?: StringMonitorParams | undefined;
38
- /**
39
- * Custom color scheme.
40
- *
41
- * @default `undefined` \
42
- * Inherits default Tweakpane theme equivalent to `ThemeUtils.presets.standard`, or the theme
43
- * set with `setGlobalDefaultTheme()`.
44
- */
45
- theme?: import('..').Theme | undefined;
46
- /**
47
- * Reference to internal Tweakpane
48
- * [`BindingApi`](https://tweakpane.github.io/docs/api/classes/_internal_.BindingApi.html) for
49
- * this control.
50
- *
51
- * This property is exposed for advanced use cases only, such as when implementing convenience
52
- * components wrapping `<Binding>`'s functionality.
53
- *
54
- * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
55
- *
56
- * @bindable
57
- * @readonly
58
- */
59
- ref?: import('./GenericMonitor.svelte').GenericMonitorRef | undefined;
60
- /**
61
- * Imported Tweakpane `TpPluginBundle` (aliased as `Plugin`) module to automatically register in
62
- * the `<Binding>`'s containing `<Pane>`.
63
- *
64
- * This property is exposed for advanced use cases only, such as when implementing convenience
65
- * components wrapping `<Binding>`'s functionality in combination with a Tweakpane plugin.
66
- *
67
- * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
68
- *
69
- * @default `undefined`
70
- */
71
- plugin?: import('@tweakpane/core').TpPluginBundle | undefined;
72
- },
73
- 'object' | 'key'
74
- > & {
75
- /**
76
- * A `string` value to monitor.
77
- */
78
- value: string;
79
- } & {
5
+ props: {
6
+ /**
7
+ * A `string` value to monitor.
8
+ * */
9
+ value: string;
10
+ /**
11
+ * Display multiline strings.
12
+ * @default `false`
13
+ * */
14
+ multiline?: boolean | undefined;
15
+ } & Omit<
16
+ {
80
17
  /**
81
18
  * Number of past states to retain.
82
19
  * @default `1` \
@@ -99,19 +36,82 @@ declare const __propDef: {
99
36
  * Or `3` if value is `string` and `multiline` is `true`.
100
37
  */
101
38
  rows?: number | undefined;
102
- },
39
+ } & {
40
+ /**
41
+ * A `string` value to monitor.
42
+ */
43
+ value: string;
44
+ } & Omit<
45
+ {
46
+ /**
47
+ * The binding's target object with values to manipulate.
48
+ * @bindable
49
+ */
50
+ object: import('@tweakpane/core').Bindable & Record<string, string>;
51
+ /** The key for the value in the target `object` that the control should manipulate. */
52
+ key: string;
53
+ /**
54
+ * Prevent interactivity and gray out the control.
55
+ * @default `false`
56
+ */
57
+ disabled?: boolean | undefined;
58
+ /**
59
+ * Text displayed next to control.
60
+ * @default `undefined`
61
+ */
62
+ label?: string | undefined;
63
+ /**
64
+ * Tweakpane's internal options object.
65
+ *
66
+ * See [`BindingParams`](https://tweakpane.github.io/docs/api/types/BindingParams.html).
67
+ *
68
+ * Valid types are contingent on the type of the value `key` points to in `object`.
69
+ *
70
+ * This is intended internal use, when implementing convenience components wrapping Binding's
71
+ * functionality. Options of interest are instead exposed as top-level props in _Svelte
72
+ * Tweakpane UI_.
73
+ * @default `undefined`
74
+ */
75
+ options?: StringMonitorParams | undefined;
76
+ /**
77
+ * Custom color scheme.
78
+ *
79
+ * @default `undefined` \
80
+ * Inherits default Tweakpane theme equivalent to `ThemeUtils.presets.standard`, or the theme
81
+ * set with `setGlobalDefaultTheme()`.
82
+ */
83
+ theme?: import('..').Theme | undefined;
84
+ /**
85
+ * Reference to internal Tweakpane
86
+ * [`BindingApi`](https://tweakpane.github.io/docs/api/classes/_internal_.BindingApi.html) for
87
+ * this control.
88
+ *
89
+ * This property is exposed for advanced use cases only, such as when implementing convenience
90
+ * components wrapping `<Binding>`'s functionality.
91
+ *
92
+ * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
93
+ *
94
+ * @bindable
95
+ * @readonly
96
+ */
97
+ ref?: import('./GenericMonitor.svelte').GenericMonitorRef | undefined;
98
+ /**
99
+ * Imported Tweakpane `TpPluginBundle` (aliased as `Plugin`) module to automatically register in
100
+ * the `<Binding>`'s containing `<Pane>`.
101
+ *
102
+ * This property is exposed for advanced use cases only, such as when implementing convenience
103
+ * components wrapping `<Binding>`'s functionality in combination with a Tweakpane plugin.
104
+ *
105
+ * Direct manipulation of Tweakpane's internals can break _Svelte Tweakpane UI_ abstractions.
106
+ *
107
+ * @default `undefined`
108
+ */
109
+ plugin?: import('@tweakpane/core').TpPluginBundle | undefined;
110
+ },
111
+ 'object' | 'key'
112
+ >,
103
113
  'ref' | 'options' | 'plugin' | 'interval'
104
- > & {
105
- /**
106
- * A `string` value to monitor.
107
- * */
108
- value: string;
109
- /**
110
- * Display multiline strings.
111
- * @default `false`
112
- * */
113
- multiline?: boolean | undefined;
114
- };
114
+ >;
115
115
  events: {
116
116
  [evt: string]: CustomEvent<any>;
117
117
  };