@typecaast/core 0.3.0 → 0.4.0
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.
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -49,6 +49,10 @@ interface ComposerProps {
|
|
|
49
49
|
composer: ComposerState;
|
|
50
50
|
/** The participant using the composer (usually self). */
|
|
51
51
|
author?: Participant;
|
|
52
|
+
/** Skin-specific options (validated by the skin's `optionsSchema`), mirroring
|
|
53
|
+
* `FrameProps.options` — e.g. the Cursor skin reads `options.model` to label
|
|
54
|
+
* the model chip in the reply box. */
|
|
55
|
+
options?: Record<string, unknown>;
|
|
52
56
|
}
|
|
53
57
|
interface AvatarProps {
|
|
54
58
|
theme: ResolvedTheme;
|
package/dist/index.d.ts
CHANGED
|
@@ -49,6 +49,10 @@ interface ComposerProps {
|
|
|
49
49
|
composer: ComposerState;
|
|
50
50
|
/** The participant using the composer (usually self). */
|
|
51
51
|
author?: Participant;
|
|
52
|
+
/** Skin-specific options (validated by the skin's `optionsSchema`), mirroring
|
|
53
|
+
* `FrameProps.options` — e.g. the Cursor skin reads `options.model` to label
|
|
54
|
+
* the model chip in the reply box. */
|
|
55
|
+
options?: Record<string, unknown>;
|
|
52
56
|
}
|
|
53
57
|
interface AvatarProps {
|
|
54
58
|
theme: ResolvedTheme;
|