@captureid/datatypes 1.0.36 → 1.0.37
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.
package/lib/enums.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DataObject } from "../data-object";
|
|
2
2
|
import { PaymentTerminal } from "../payment/payment-terminal-object";
|
|
3
|
+
import { Address } from "./address-object";
|
|
3
4
|
import { Room } from "./location-object";
|
|
4
5
|
export interface Store {
|
|
5
6
|
id: string;
|
|
@@ -20,3 +21,19 @@ export declare class StoreObject extends DataObject implements StoreObject {
|
|
|
20
21
|
constructor(data: Store[]);
|
|
21
22
|
getEntryCount(): number;
|
|
22
23
|
}
|
|
24
|
+
export interface StoreInformation {
|
|
25
|
+
id: string;
|
|
26
|
+
name: string;
|
|
27
|
+
address: Address;
|
|
28
|
+
stockid: string[];
|
|
29
|
+
}
|
|
30
|
+
export declare class StoreInformation implements StoreInformation {
|
|
31
|
+
constructor(id?: string, name?: string, address?: Address, stockid?: string[]);
|
|
32
|
+
}
|
|
33
|
+
export interface StoreInformationObject {
|
|
34
|
+
data: StoreInformation[];
|
|
35
|
+
}
|
|
36
|
+
export declare class StoreInformationObject extends DataObject implements StoreInformationObject {
|
|
37
|
+
constructor(data: StoreInformation[]);
|
|
38
|
+
getEntryCount(): number;
|
|
39
|
+
}
|