Skip to main content Link Search Menu Expand Document (external link)

Arbitrary overview

Added in v1.0.0


Table of contents


arbitrary

from

Signature

export declare const from: <I, A>(schema: Schema.Schema<I, A>) => Arbitrary<I>

Added in v1.0.0

to

Signature

export declare const to: <I, A>(schema: Schema.Schema<I, A>) => Arbitrary<A>

Added in v1.0.0

hooks

ArbitraryHookId

Signature

export declare const ArbitraryHookId: typeof ArbitraryHookId

Added in v1.0.0

ArbitraryHookId (type alias)

Signature

export type ArbitraryHookId = typeof ArbitraryHookId

Added in v1.0.0

model

Arbitrary (interface)

Signature

export interface Arbitrary<A> {
  (fc: typeof FastCheck): FastCheck.Arbitrary<A>
}

Added in v1.0.0