-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(operator): add comments to generated dom patching
- Loading branch information
1 parent
19a2771
commit 6e941e2
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
/** | ||
* Everything in this file is generated by the 'tools/generate-operator-patches.ts' script. | ||
* Any manual edits to this file will be lost next time the script is run. | ||
**/ | ||
import {Observable} from '../../../Observable'; | ||
import { AjaxObservable, AjaxCreationMethod } from '../../../observable/dom/ajax'; | ||
import {AjaxObservable} from '../../../observable/dom/ajax'; | ||
|
||
Observable.ajax = AjaxObservable.create; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
/** | ||
* Everything in this file is generated by the 'tools/generate-operator-patches.ts' script. | ||
* Any manual edits to this file will be lost next time the script is run. | ||
**/ | ||
import {Observable} from '../../../Observable'; | ||
import {WebSocketSubject} from '../../../observable/dom/webSocket'; | ||
|
||
Observable.webSocket = WebSocketSubject.create; | ||
|
||
export var _void: void; | ||
export var _void: void; |