mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Fix build errors
This commit is contained in:
Vendored
+2
-2
@@ -7,7 +7,7 @@ interface DiLite {
|
||||
version: string;
|
||||
createContext(): DiCreateContext;
|
||||
dependencyExpression(depExp: string): string;
|
||||
entry(name: string, ctx: DiCreateContext);
|
||||
entry(name: string, ctx: DiCreateContext): DiEntry;
|
||||
strategy: DiStrategy;
|
||||
factory: DiFactory;
|
||||
utils: DiUtils;
|
||||
@@ -19,7 +19,7 @@ interface DiCreateContext {
|
||||
register(name: string, type?: any, args?: any): DiEntry;
|
||||
has(name: string): boolean;
|
||||
"get"(name: string): any;
|
||||
create(name: string, args: any)
|
||||
create(name: string, args: any): any;
|
||||
initialize(): void;
|
||||
clear(): void;
|
||||
inject(name: string, o: Object, dependencies: string): Object;
|
||||
|
||||
Reference in New Issue
Block a user