File

C:/GoDev/src/TCSTK-Angular/projects/tibco-tcstk/tc-core-lib/src/lib/models/deserializable.ts

Index

Methods

Methods

deserialize
deserialize(input: any)
Parameters :
Name Type Optional
input any No
export interface Deserializable {
  deserialize(input: any): this;
}

export class DeserializableClass implements Deserializable {
  deserialize(input: any): this {
    Object.assign(this, input);
    return this;
  }
}

result-matching ""

    No results matching ""