Skip to content
This repository was archived by the owner on Feb 17, 2024. It is now read-only.

Commit a8b5ee1

Browse files
committed
chore(typings): more types for change detection
1 parent b346a36 commit a8b5ee1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/custom_typings/ng2.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ declare var global: any;
55
declare var zone: any;
66
declare var Zone: any;
77

8+
interface ObjectConstructor {
9+
assign(target: any, ...sources: any[]): any;
10+
}
11+
812
declare module "angular2/src/change_detection/pipes/pipe" {
913
class PipeFactory {}
1014
}
@@ -15,9 +19,13 @@ declare module "angular2/src/change_detection/change_detection" {
1519

1620
declare module "angular2/change_detection" {
1721
class Pipe {}
22+
class NullPipeFactory {}
1823
class PipeRegistry {
1924
constructor(pipes: any)
2025
}
26+
class JitChangeDetection {}
27+
class ChangeDetection {}
28+
class DynamicChangeDetection {}
2129
var defaultPipes: any;
2230
}
2331

0 commit comments

Comments
 (0)