jsegd-fluig-types 1.0.0 → 1.0.1
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/README.md +29 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# jsegd-fluig-types
|
|
2
|
+
|
|
3
|
+
Pacote de tipos TypeScript para integração com o Fluig.
|
|
4
|
+
|
|
5
|
+
## Instalação
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install jsegd-fluig-types
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Uso
|
|
12
|
+
|
|
13
|
+
Importe os tipos conforme necessário:
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { /* tipos */ } from 'jsegd-fluig-types';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Conteúdo
|
|
20
|
+
- `fluig.sdk.d.ts`: Tipos para SDK do Fluig
|
|
21
|
+
- `java.d.ts`: Tipos para integração Java
|
|
22
|
+
- `types.d.ts`: Tipos utilitários
|
|
23
|
+
- `index.d.ts`: Exporta todos os tipos
|
|
24
|
+
|
|
25
|
+
## Licença
|
|
26
|
+
Este pacote está sob a licença CC-BY-NC-ND-4.0. Uso permitido apenas para fins não comerciais e sem modificações.
|
|
27
|
+
|
|
28
|
+
## Empresa
|
|
29
|
+
[EGD Tecnologia](https://www.egd.tec.br/)
|
package/package.json
CHANGED