|
@@ -4,10 +4,15 @@
|
|
|
declare module Widgets {
|
|
|
export class ManagerBase {
|
|
|
display_view(msg: any, view: any, options: any): Promise<any>;
|
|
|
- handle_comm_open(comm: Comm, msg: any): Promise<any>;
|
|
|
+ handle_comm_open(comm: shims.services.Comm, msg: any): Promise<any>;
|
|
|
}
|
|
|
- export class Comm {
|
|
|
- constructor(comm: any);
|
|
|
+
|
|
|
+ export module shims {
|
|
|
+ export module services {
|
|
|
+ export class Comm {
|
|
|
+ constructor(comm: any);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|