acacode / acacode/swagger-typescript-api
Any way to keep interface property in the same order
Offen
bug
good first issue
help wanted
- Vorherrschende Sprache
- TypeScript
- Sterne
- 4.1k
- Forks
- 436
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
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.
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.