Skip to content

Commit ff85850

Browse files
fix lint
1 parent 79cb304 commit ff85850

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ type MongoCryptConstructorOptions = {
6161
};
6262

6363
export interface MongoCryptConstructor {
64-
new(options: MongoCryptConstructorOptions): MongoCrypt;
64+
new (options: MongoCryptConstructorOptions): MongoCrypt;
6565
libmongocryptVersion: string;
6666
}
6767

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

124124
/** exported for testing only. */
125125
interface MongoCryptContextCtor {
126-
new(): MongoCryptContext;
126+
new (): MongoCryptContext;
127127
}
128128
export const MongoCryptContextCtor: MongoCryptContextCtor = mc.MongoCryptContextCtor;

0 commit comments

Comments
 (0)