@traversable/schema
    Preparing search index...

    Interface t_record<S>

    interface t_record<S> {
        _type: Record<string, S["_type" & keyof S]>;
        def: S;
        tag: "@traversable/schema/URI::record";
        (
            got: Unknown | Record<string, S["_type" & keyof S]>,
        ): got is Record<string, S["_type" & keyof S]>;
        (got: unknown): got is Record<string, S["_type" & keyof S]>;
    }

    Type Parameters

    • S
    Index

    Properties

    Properties

    _type: Record<string, S["_type" & keyof S]>
    def: S
    tag: "@traversable/schema/URI::record"