|
@@ -63,13 +63,13 @@ interface formState {
|
|
|
goAfterLeave: string
|
|
goAfterLeave: string
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-interface alert {
|
|
|
|
|
|
|
+interface Alerts {
|
|
|
type: TYPE_ALERT,
|
|
type: TYPE_ALERT,
|
|
|
- message: string
|
|
|
|
|
|
|
+ messages: Array<string>
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
interface pageState {
|
|
interface pageState {
|
|
|
- alerts: Array<alert>,
|
|
|
|
|
|
|
+ alerts: Array<Alerts>,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
interface Historical {
|
|
interface Historical {
|
|
@@ -190,7 +190,8 @@ interface DataProviderArgs extends UrlArgs {
|
|
|
}
|
|
}
|
|
|
interface DataPersisterArgs extends UrlArgs {
|
|
interface DataPersisterArgs extends UrlArgs {
|
|
|
data?: AnyJson,
|
|
data?: AnyJson,
|
|
|
- query?: Query
|
|
|
|
|
|
|
+ query?: Query,
|
|
|
|
|
+ file?: string
|
|
|
}
|
|
}
|
|
|
interface DataDeleterArgs extends UrlArgs {}
|
|
interface DataDeleterArgs extends UrlArgs {}
|
|
|
|
|
|
|
@@ -277,3 +278,4 @@ interface HydraMetadata {
|
|
|
previousPage?: number,
|
|
previousPage?: number,
|
|
|
type?: METADATA_TYPE
|
|
type?: METADATA_TYPE
|
|
|
}
|
|
}
|
|
|
|
|
+
|