-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix typos, licenses details and more
- Loading branch information
Dah-kenangnon
committed
Dec 29, 2023
1 parent
39d2d3e
commit 73b44f5
Showing
13 changed files
with
95 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,30 @@ | |
"main": "./public/dist/bundle.js", | ||
"description": "Benin Republic territory data for web and JS apps", | ||
"version": "1.0.3", | ||
"keywords": [ | ||
"Benin", | ||
"Benin Republic", | ||
"Territory", | ||
"Location", | ||
"Data", | ||
"Cotonou", | ||
"Porto-Novo", | ||
"Parakou", | ||
"Djougou", | ||
"Bohicon", | ||
"Kandi", | ||
"Abomey" | ||
], | ||
"maintainers": [ | ||
{ | ||
"name": "Justin Y. Dah-kenangnon", | ||
"email": "[email protected]", | ||
"web": "https://dah-kenangnon.com", | ||
"twitter": "https://twitter.com/dahkenangnon", | ||
"github": "https://github.com/Dahkenangnon" | ||
} | ||
], | ||
"homepage": "https://dahkenangnon.github.io/location_data_bj_js/", | ||
"author": { | ||
"name": "Justin Y. Dah-kenangnon", | ||
"email": "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
/** | ||
* @license | ||
* Copyright Justin Dah-kenangnon - All Rights Reserved. | ||
* | ||
* @link https://dah-kenangnon.com | ||
* For more details, see LICENSE.md file in root folder | ||
*/ | ||
import { IDepartment, IDistrict, INeighborhood, ITown } from "./interfaces"; | ||
export type BjLocationData = (IDepartment | ITown | IDistrict | INeighborhood) & { type?: string }; | ||
export type BjLocationType = "department" | "town" | "district" | "neighborhood"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters