BSB Node.js Type Definitions
    Preparing search index...

    Interface ValidationResult<T>

    interface ValidationResult<T = any> {
        success: boolean;
        data?: T;
        error?: Error;
    }

    Type Parameters

    • T = any
    Index

    Properties

    Properties

    success: boolean
    data?: T
    error?: Error