import {expectType} from 'tsd'; import {isJunk, isNotJunk, junkRegex} from './index.js'; expectType(isJunk('foo')); expectType(isNotJunk('foo')); expectType(junkRegex);