Skip to content

Commit e7c02a7

Browse files
authored
Ensure TypeScript defs are valid, fixes initializer error (#15)
1 parent cde9231 commit e7c02a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export const GLIBC: string = 'glibc';
2-
export const MUSL: string = 'musl';
1+
export const GLIBC: 'glibc';
2+
export const MUSL: 'musl';
33

44
export function family(): Promise<string | null>;
55
export function familySync(): string | null;

0 commit comments

Comments
 (0)