File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export * from './contact.model';
12
12
export * from './controller.model' ;
13
13
export * from './custom-router.model' ;
14
14
export * from './custom-routes.model' ;
15
+ export * from './integration-defined-options.model' ;
15
16
export * from './integration-entity.model' ;
16
17
export * from './integration-error.model' ;
17
18
export * from './integrations-event.model' ;
Original file line number Diff line number Diff line change
1
+ export type IntegrationDefinedOptionsModel = {
2
+ label : string ;
3
+ type : string ;
4
+ options ?: {
5
+ label : string ;
6
+ key : string ;
7
+ } [ ] ;
8
+ } ;
Original file line number Diff line number Diff line change @@ -6,14 +6,3 @@ export type Task = {
6
6
link ?: string ;
7
7
title : string ;
8
8
} ;
9
-
10
- export type TaskMetadata = {
11
- fields : {
12
- label : string ;
13
- type : string ;
14
- options ?: {
15
- label : string ;
16
- key : string ;
17
- } [ ] ;
18
- } [ ] ;
19
- } ;
You can’t perform that action at this time.
0 commit comments