effect-ts-laws
    Preparing search index...

    Interface MonoProps

    An underlying type for monomorphic typeclass tests that is an alternative to the Mono type, this type is an object vs. Mono which is an array. This lets you test laws on higher order datatypes that require an object as only parameter, for example React functional components.

    interface MonoProps {
        x: number;
        y: string;
    }
    Index

    Properties

    x y

    Properties

    x: number
    y: string