Phantom Stories Library - v0.0.8
    Preparing search index...

    Interface PassingProps<T>

    Props for the Passing component, used when the Validation is in a Passing state.

    interface PassingProps<T> {
        validation: Validation<T>;
        value: T;
    }

    Type Parameters

    • T

      The type of the data in Passing state.

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    validation: Validation<T>

    The Validation instance to render.

    value: T

    The validated value from the Passing state.