- Added error parameter to request and response event - Dropped error event - Updated typescript indentation
7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
export default class Serializer {
|
|
serialize(object: any): string;
|
|
deserialize(json: string): any;
|
|
ndserialize(array: any[]): string;
|
|
qserialize(object: any): string;
|
|
}
|