Keeta LogoKeeta Logo@keetanetwork/keetanet-client
    Preparing search index...

    Type Alias Mutable<T>

    Mutable: T extends Buffer
    | ArrayBuffer
    | Date
        ? T
        : T extends object ? { -readonly [K in keyof T]: Mutable<T[K]> } : T

    Create a Mutable type from a given Readonly type

    Does not handle all possible objects, but those used within the ASN1 encoder/decoder

    Type Parameters

    • T