-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(typings): repair broken typechecks
- Loading branch information
Showing
19 changed files
with
100 additions
and
77 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
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
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
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
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
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
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
9 changes: 1 addition & 8 deletions
9
modules/angular2_material/src/components/progress-linear/progress_linear.ts
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
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 |
---|---|---|
|
@@ -2,7 +2,6 @@ import { | |
Component, | ||
View, | ||
ViewEncapsulation, | ||
LifecycleEvent, | ||
Host, | ||
SkipSelf, | ||
Attribute, | ||
|
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
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,2 +1,3 @@ | ||
export var createElement: Function; | ||
export var render: Function; | ||
export var createClass: Function; |
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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
declare namespace angular { | ||
function module(prefix: string, dependencies?: string[]); | ||
interface IModule { | ||
directive(selector: string, factory: any): IModule; | ||
value(key: string, value: any): IModule; | ||
run(a: any); | ||
} | ||
interface ICompileService { | ||
(element: Element): (IScope) => void; | ||
} | ||
interface IRootScopeService { | ||
$new(): IScope; | ||
$watch(expr: any, fn?: (a1?: any, a2?: any) => void); | ||
$apply(): any; | ||
$apply(exp: string): any; | ||
$apply(exp: (scope: IScope) => any): any; | ||
} | ||
interface IScope extends IRootScopeService {} | ||
interface IAngularBootstrapConfig {} | ||
interface IDirective {} | ||
interface IAttributes { | ||
$observe(attr: string, fn: (v: string) => void); | ||
} | ||
interface ITranscludeFunction {} | ||
interface IAugmentedJQuery { | ||
bind(name: string, fn: () => void); | ||
} | ||
interface IParseService { | ||
(expression: string): ICompiledExpression; | ||
} | ||
interface ICompiledExpression { | ||
assign(context: any, value: any): any; | ||
} | ||
function element(e: Element); | ||
function bootstrap(e: Element, modules: IModule[], config: IAngularBootstrapConfig); | ||
|
||
namespace auto { | ||
interface IInjectorService { | ||
get(key: string): any; | ||
} | ||
} | ||
var version: {major: number}; | ||
} | ||
|
||
interface Function { | ||
$inject?: string[]; | ||
} |
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
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
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
This file was deleted.
Oops, something went wrong.
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
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