Interface TypeMismatchError

型ミスマッチエラー。 期待されるものと異なる型の値が与えられた場合にthrowされる。

interface TypeMismatchError {
    actual: any;
    cause?: any;
    expected: string;
    message: string;
    name: "TypeMismatchError";
    stack?: string;
}

Hierarchy (view full)

Properties

actual: any

実際に渡されたオブジェクト。

cause?: any
expected: string

期待される型情報。

message: string
name: "TypeMismatchError"
stack?: string