@marteye/studiojs 1.1.23 → 1.1.24
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/dist/utils/eartag.d.ts +2 -1
- package/package.json +1 -1
package/dist/utils/eartag.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export default class EarTag {
|
|
|
7
7
|
static get countryCodesByNumber(): {
|
|
8
8
|
[code: string]: CountryCode;
|
|
9
9
|
};
|
|
10
|
+
private normalisedCountryCode;
|
|
10
11
|
private _raw;
|
|
11
12
|
get raw(): string;
|
|
12
13
|
private _isEartag;
|
|
@@ -15,7 +16,7 @@ export default class EarTag {
|
|
|
15
16
|
get isoCountryCode(): string | undefined;
|
|
16
17
|
private _nationalIdentifier?;
|
|
17
18
|
get nationalIdentifier(): string | undefined;
|
|
18
|
-
constructor(input: string, fallbackCountryCode?: CountryCode);
|
|
19
|
+
constructor(input: string, fallbackCountryCode?: CountryCode | string | null);
|
|
19
20
|
static parse(str: string, fallbackCountryCode?: CountryCode): EarTag;
|
|
20
21
|
static format(str: string): string | null;
|
|
21
22
|
toString(): string;
|