@kadown/types 0.1.1 → 0.1.3
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/properties.ts +5 -1
- package/package.json +1 -1
package/lib/properties.ts
CHANGED
|
@@ -12,7 +12,7 @@ export interface Geo_Properties {
|
|
|
12
12
|
*
|
|
13
13
|
* @see{https://themimu.info/place-codes}
|
|
14
14
|
*/
|
|
15
|
-
PCode_V
|
|
15
|
+
PCode_V?: number;
|
|
16
16
|
/** State and Region Names */
|
|
17
17
|
ST?: SNR_Names;
|
|
18
18
|
/** State and Region Names in Myanmar*/
|
|
@@ -103,4 +103,8 @@ export interface Geo_Properties {
|
|
|
103
103
|
Longitude?: number;
|
|
104
104
|
/** Latitude for Village */
|
|
105
105
|
Latitude?: number;
|
|
106
|
+
/** id for country */
|
|
107
|
+
Id?: number;
|
|
108
|
+
/** Country name */
|
|
109
|
+
CRTY_NAME?: "Myanmar";
|
|
106
110
|
}
|