@meld-ts/core
    Preparing search index...

    Type Alias ErrorLike

    类 Error 结构:包含 messageerror 字段的对象

    用于 isErrorLike 的类型收窄目标。两个字段均为可选, 但 isErrorLike 保证收窄后至少其一为非空字符串。

    isErrorLike 类型守卫

    type ErrorLike = {
        message?: string;
        error?: string;
    }
    Index

    Properties

    Properties

    message?: string
    error?: string