@traversable/schema
    Preparing search index...

    Interface ReadonlyArray<S>

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

    Type Parameters

    • S
    Index

    Properties

    Properties

    _type: readonly S["_type" & keyof S][]
    def: S
    tag: "@traversable/schema/URI::array"