acacode / acacode/swagger-typescript-api
Any way to keep interface property in the same order
Ouverte
bug
good first issue
help wanted
- Langage dominant
- TypeScript
- Étoiles
- 4.1k
- Forks
- 436
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Hey,
We commit the generated API code to follow change through our stories. It's good but the order of each interface change at each generation.
First generation:
```
interface A {
b: string;
c: string;
}
```
second generation:
```
interface A {
c: string;
b: string;
}
```
There is a way to keep order? Something like alphabetical order?
Thx.
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.