C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-core-lib/src/lib/models/deserializable.ts
Methods |
deserialize | ||||||
deserialize(input: any)
|
||||||
Parameters :
|
export interface Deserializable {
deserialize(input: any): this;
}
export class DeserializableClass implements Deserializable {
deserialize(input: any): this {
Object.assign(this, input);
return this;
}
}