Type Alias TFuseSerializable<T>

TFuseSerializable<T>: {
    [K in keyof T]: T[K]
}

Utility type wrap, useful if you have a concrete interface of TSerializable properties. Use this to declare that your interface is Fuse Serializable.

e.g.

 interface MyInterface {...}
type TMyInterface = FuseSerializable<MyInterface>;

Type Parameters

  • T