| 4 | * Interface for serializable objects |
| 5 | */ |
| 6 | export interface ISerializable { |
| 7 | /** |
| 8 | * Returns the serialized form of the current object |
| 9 | * @return {object} serialized form of object. Must only contain JSON types |
| 10 | */ |
| 11 | serialize():Object; |
| 12 | } |
| 13 | } |
no outgoing calls
no test coverage detected