Skip to content

Commit

Permalink
fix: generated index.d.ts file using tsc command (#287) (#288)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukasz Gornicki <[email protected]>
  • Loading branch information
vinibiavatti1 and derberg authored Nov 24, 2022
1 parent 5c73875 commit c1a6f3c
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions index.d.ts
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;

0 comments on commit c1a6f3c

Please sign in to comment.