@blockchaincommons/components - v1.0.0-beta.4
    Preparing search index...

    Interface DataTooShortDetails

    Details of a DataTooShort failure.

    interface DataTooShortDetails {
        code: "DataTooShort";
        dataType: string;
        minimum: number;
        actual: number;
    }
    Index
    code: "DataTooShort"

    The discriminant.

    dataType: string

    What was being constructed.

    minimum: number

    The smallest byte length the type accepts.

    actual: number

    The byte length that was given.