Skip to content

Commit 4abb81c

Browse files
tgfisher4gcanti
authored andcommitted
exact . type -> strict; ignore '.DS_Store'
1 parent 90a3d04 commit 4abb81c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ node_modules
44
dev
55
coverage
66
declaration/out/src
7+
.DS_Store

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ function enumerableRecord<D extends Mixed, C extends Mixed>(
334334
for (let i = 0; i < len; i++) {
335335
props[keys[i]] = codomain
336336
}
337-
const exactCodec = exact(type(props, name), name)
337+
const exactCodec = strict(props, name)
338338

339339
return new DictionaryType(
340340
name,

0 commit comments

Comments
 (0)