@datapos/datapos-shared 0.3.32 → 0.3.34
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.
|
@@ -22,7 +22,7 @@ export type { ConnectorInterfaceResult, ContextInterfaceResult, Engine, EngineWo
|
|
|
22
22
|
export { APIError, ApplicationError, EngineError, FetchError, OperationalError, VueError, WindowRuntimeError, WindowPromiseRejectionError } from './errors';
|
|
23
23
|
export type { SerialisedError } from './errors';
|
|
24
24
|
export type { EventQueryConfig } from './eventQuery';
|
|
25
|
-
export type { Presenter, PresenterConfig
|
|
25
|
+
export type { Presenter, PresenterConfig } from './presenter';
|
|
26
26
|
export type { Recipe, RecipeConfig } from './recipe';
|
|
27
27
|
export type { ServiceData } from './service';
|
|
28
28
|
export type { StateConfig } from './state';
|
|
@@ -5,7 +5,7 @@ export interface Presenter {
|
|
|
5
5
|
render(id: string, renderTo: string | HTMLElement): Promise<void>;
|
|
6
6
|
}
|
|
7
7
|
export interface PresenterConfig extends ComponentConfig {
|
|
8
|
-
|
|
8
|
+
version: string;
|
|
9
9
|
}
|
|
10
10
|
export interface PresenterItemConfig {
|
|
11
11
|
items?: PresenterItemConfig[];
|
|
@@ -5,7 +5,7 @@ export interface Recipe {
|
|
|
5
5
|
render(id: string, renderTo: string | HTMLElement): Promise<void>;
|
|
6
6
|
}
|
|
7
7
|
export interface RecipeConfig extends ComponentConfig {
|
|
8
|
-
|
|
8
|
+
version: string;
|
|
9
9
|
}
|
|
10
10
|
export interface RecipeItemConfig {
|
|
11
11
|
items?: RecipeItemConfig[];
|