Merge pull request #933 from asc11cat/fix/typedef-options-postfix

Fix: Add missing postfix field to options typedef
This commit is contained in:
Ferdi Koomen 2022-01-24 16:52:19 +01:00 committed by GitHub
commit 317190fef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

1
types/index.d.ts vendored
View File

@ -15,6 +15,7 @@ export type Options = {
exportServices?: boolean;
exportModels?: boolean;
exportSchemas?: boolean;
postfix?: string;
request?: string;
write?: boolean;
};