zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
/**
Typings for esri loaded modules that aren't exposed in the offical typings file for ESRI or Dojo
*/
 
declare namespace __esriExtend {
   
    export const dojoxGfx: any;
 
    export const GFXObject: any;
    export const Projector: any;
}
 
 
declare module "esri/views/2d/engine/graphics/GFXObject" {
    import GFXObject = __esriExtend.GFXObject;
    export = GFXObject;
}
 
declare module "esri/views/2d/engine/graphics/Projector" {
    import Projector = __esriExtend.Projector;
    export = Projector;
}
 
//declare module "dojox/gfx" {
//    import dojoxGfx = __esriExtend.dojoxGfx;
//    export = dojoxGfx; 
//}