mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
433 B
TypeScript
13 lines
433 B
TypeScript
// Type definitions for inversify-devtools 1.0.0
|
|
// Project: https://github.com/inversify/inversify-devtools
|
|
// Definitions by: inversify <https://github.com/inversify>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
import * as inversify from "inversify";
|
|
|
|
interface ConnectKernel extends Function {
|
|
(kernel: inversify.interfaces.Kernel): void;
|
|
}
|
|
|
|
export default function render(container: string): ConnectKernel;
|