Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson committed Dec 2, 2024
1 parent 79cb304 commit ff85850
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 @@ -61,7 +61,7 @@ type MongoCryptConstructorOptions = {
};

export interface MongoCryptConstructor {
new(options: MongoCryptConstructorOptions): MongoCrypt;
new (options: MongoCryptConstructorOptions): MongoCrypt;
libmongocryptVersion: string;
}

Expand Down Expand Up @@ -123,6 +123,6 @@ export const MongoCrypt: MongoCryptConstructor = class MongoCrypt extends mc.Mon

/** exported for testing only. */
interface MongoCryptContextCtor {
new(): MongoCryptContext;
new (): MongoCryptContext;
}
export const MongoCryptContextCtor: MongoCryptContextCtor = mc.MongoCryptContextCtor;

0 comments on commit ff85850

Please sign in to comment.