feat(Types): Improve type spec and ignore signatures that use unknown type

This commit is contained in:
Glen Whitney 2022-07-24 12:52:05 -07:00
parent 890752a1e7
commit 358f68fbbd
7 changed files with 129 additions and 70 deletions

View file

@ -1,3 +1,6 @@
export const Types = {
bigint: {test: b => typeof b === 'bigint'}
bigint: {
before: ['Complex'],
test: b => typeof b === 'bigint'
}
}