UNPKG

@frauschert/ts-guard

Version:

ts-guard is a typescript library that provides composable type guards. Its inspired by zod but focusses only on type guards and is more lightweight.

3 lines 166 B
import { Guard } from "../types"; export declare function isMap<K, V>(keyGuard: Guard<K>, valueGuard: Guard<V>): Guard<Map<K, V>>; //# sourceMappingURL=isMap.d.ts.map