Type Alias: Encodable
ts
type Encodable =
| EncodablePrimitive
| Date
| RegExp
| ArrayBuffer
| DataView
| DateTime
| Duration
| Interval
| EncodableTypedArray
| Encodable[]
| {
[key: string]: Encodable;
}
| Map<Encodable, Encodable>
| Set<Encodable>
| Error
| EvalError
| RangeError
| ReferenceError
| SyntaxError
| TypeError
| URIError
| PhoneModel
| Function
| (...args: any[]) => any;Defines all the types which can be be encoded
See
- @nhtio/encoder!EncodablePrimitive | EncodablePrimitive
- @nhtio/encoder!EncodableTypedArray | EncodableTypedArray
- DateTime | DateTime
- Duration | Duration
- Interval | Interval
- PhoneModel | PhoneModel