neocatecumenal 1.0.0

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/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "neocatecumenal",
3
+ "version": "1.0.0",
4
+ "description": "Libs compartilhadas entre app do CNC",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/leonardocintra/neocatecumenal.git"
12
+ },
13
+ "keywords": [
14
+ "neocatecumenal"
15
+ ],
16
+ "author": "Leonardo Nascimento Cintra",
17
+ "license": "ISC",
18
+ "bugs": {
19
+ "url": "https://github.com/leonardocintra/neocatecumenal/issues"
20
+ },
21
+ "homepage": "https://github.com/leonardocintra/neocatecumenal#readme"
22
+ }
package/src/index.ts ADDED
File without changes
@@ -0,0 +1,7 @@
1
+ import { Estado } from './estado';
2
+
3
+ export interface Cidade {
4
+ id: string;
5
+ nome: string;
6
+ estado: Estado;
7
+ }
@@ -0,0 +1,8 @@
1
+ import { Pais } from './pais';
2
+
3
+ export interface Estado {
4
+ id: string;
5
+ nome: string;
6
+ sigla: string;
7
+ pais: Pais;
8
+ }
@@ -0,0 +1,5 @@
1
+ export interface Pais {
2
+ id: string;
3
+ nome: string;
4
+ codigo: string;
5
+ }