mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-01 14:41:32 +00:00
[ACS-6630] Replaced references of any
This commit is contained in:
@@ -115,7 +115,7 @@ settingsApi.publishExtensionConfig(`<instanceId>`, extensionConfig).then(() => {
|
|||||||
| Name | Type |
|
| Name | Type |
|
||||||
|------------|-----------------------------------|
|
|------------|-----------------------------------|
|
||||||
| **type** | string |
|
| **type** | string |
|
||||||
| **value** | any |
|
| **value** | string |
|
||||||
| parameters | [RuleParameter[]](#RuleParameter) |
|
| parameters | [RuleParameter[]](#RuleParameter) |
|
||||||
|
|
||||||
## ActionRef
|
## ActionRef
|
||||||
@@ -126,4 +126,4 @@ settingsApi.publishExtensionConfig(`<instanceId>`, extensionConfig).then(() => {
|
|||||||
|-------------|--------|
|
|-------------|--------|
|
||||||
| **id** | string |
|
| **id** | string |
|
||||||
| **type** | string |
|
| **type** | string |
|
||||||
| **payload** | any |
|
| **payload** | string |
|
||||||
|
@@ -18,5 +18,5 @@
|
|||||||
export interface ActionRef {
|
export interface ActionRef {
|
||||||
id: string;
|
id: string;
|
||||||
type: string;
|
type: string;
|
||||||
payload?: any;
|
payload?: string;
|
||||||
}
|
}
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
export interface RuleParameter {
|
export interface RuleParameter {
|
||||||
type: string;
|
type: string;
|
||||||
value: any;
|
value: string;
|
||||||
parameters?: Array<RuleParameter>;
|
parameters?: Array<RuleParameter>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user