feat(facade): added support for observables

This commit is contained in:
vsavkin
2015-03-24 13:45:39 -07:00
parent 43f4374944
commit 9b3b3d325f
10 changed files with 187 additions and 4 deletions

View File

@ -5,6 +5,8 @@ export var typeMapping = {
'string': 'String',
'any': 'dynamic',
'Promise': 'Future',
'Observable': 'Stream',
'ObservableController': 'StreamController',
'Date': 'DateTime',
'StringMap': 'Map'
};