@captureid/datatypes 1.0.53 → 1.0.54
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
|
@@ -38,3 +38,9 @@ export interface AddressTypeObject extends DataObject {
|
|
|
38
38
|
export declare class AddressTypeObject extends DataObject implements AddressTypeObject {
|
|
39
39
|
constructor(data: AddressType[]);
|
|
40
40
|
}
|
|
41
|
+
export interface AddressToCompanyObject extends DataObject {
|
|
42
|
+
data: AddressToCompany[];
|
|
43
|
+
}
|
|
44
|
+
export declare class AddressToCompanyObject extends DataObject implements AddressToCompanyObject {
|
|
45
|
+
constructor(data: AddressToCompany[]);
|
|
46
|
+
}
|