@aacebo/echo
Advanced tools
Comparing version 0.0.39 to 0.0.40
@@ -47,3 +47,10 @@ export interface Action<T = any> { | ||
} | ||
export type ControlBlock = Input | Option | Select | ChatSelect | UserSelect; | ||
export type ControlBlock = Form | Input | Option | Select | ChatSelect | UserSelect; | ||
export interface Form { | ||
readonly id?: string; | ||
readonly type: 'form'; | ||
readonly children: Block[]; | ||
readonly onChange?: Action; | ||
readonly onSubmit?: Action; | ||
} | ||
export interface Input { | ||
@@ -50,0 +57,0 @@ readonly id?: string; |
{ | ||
"name": "@aacebo/echo", | ||
"version": "0.0.39", | ||
"version": "0.0.40", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52365
1050