interface Extension {
    Class?: Function;
    type?: number;
    pack?(value: any): Uint8Array<ArrayBufferLike> | Buffer<ArrayBufferLike>;
    read?(datum: any): any;
    unpack?(
        messagePack: Uint8Array<ArrayBufferLike> | Buffer<ArrayBufferLike>,
    ): any;
    write?(instance: any): any;
}
Index

Methods

Properties

Methods

  • Parameters

    • datum: any

    Returns any

  • Parameters

    • instance: any

    Returns any

Properties

Class?: Function
type?: number