Type Alias TSerializable

TSerializable:
    | Error
    | string
    | Blob
    | ArrayBuffer
    | ISerializable<TSerializable>
    | number
    | boolean
    | Date
    | TSerializable[]
    | {
        [key: string]: TSerializable;
    }

Type of supported serializable obejcts that can go over the Fuse API bridge.

Currently the supported types are:

  • Error
  • Blob
  • ArrayBuffer
  • Primitives (string, number, boolean)
  • Date
  • Any object or array consisting exclusively of the above types