9 lines
285 B
TypeScript
Raw Normal View History

import {StringMap} from "angular2/src/facade/collection";
// no deserialization is necessary in TS.
// This is only here to match dart interface
export function deserializeGenericEvent(serializedEvent: StringMap<string, any>):
StringMap<string, any> {
return serializedEvent;
}