Skip to content

Commit

Permalink
Change the exported Types to an interface so that they can be augmented
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
thgreasi committed Sep 4, 2024
1 parent 16fe0ea commit 29de466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import * as WebResource from './types/web-resource';

export { WebResource as WebResourceType } from './types/web-resource';

export type Types = {
export interface Types {
'Big Integer': BigInteger.Types;
'Big Serial': BigSerial.Types;
// eslint-disable-next-line id-denylist
Expand All @@ -49,7 +49,7 @@ export type Types = {
Text: Text.Types;
Time: Time.Types;
WebResource: WebResource.Types;
};
}

export default {
'Big Integer': BigInteger,
Expand Down

0 comments on commit 29de466

Please sign in to comment.