forked from asyncapi/spec-json-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: generated index.d.ts file using tsc command (asyncapi#287)
- Loading branch information
1 parent
14ecce9
commit 7fbbfef
Showing
1 changed file
with
9 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
import type { JSONSchema7 } from 'json-schema'; | ||
|
||
declare module '@asyncapi/specs' { | ||
const specs: { | ||
'2.0.0': JSONSchema7, | ||
'2.1.0': JSONSchema7, | ||
'2.2.0': JSONSchema7, | ||
'2.3.0': JSONSchema7, | ||
'2.4.0': JSONSchema7, | ||
'2.5.0': JSONSchema7, | ||
} | ||
|
||
export default specs; | ||
} | ||
declare const _exports: { | ||
'2.0.0': JSONSchema7; | ||
'2.1.0': JSONSchema7; | ||
'2.2.0': JSONSchema7; | ||
'2.3.0': JSONSchema7; | ||
'2.4.0': JSONSchema7; | ||
'2.5.0': JSONSchema7; | ||
}; | ||
export = _exports; |