UNPKG

@typed/io

Version:

Runtime IO type system

7 lines 310 B
import { Any, Type } from './Type'; export interface SetType<A extends Type> extends Type<ReadonlySet<Type.Of<A>>> { readonly member: A; } export declare const set: <A extends Type<any, any>>(member: A, name?: string) => SetType<A>; export declare const Set: SetType<Any>; //# sourceMappingURL=Set.d.ts.map