File tree Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -445,24 +445,24 @@ declare module "jspdf" {
445
445
translate ( x : number , y : number ) : void ;
446
446
}
447
447
448
- enum ImageCompression {
449
- "NONE" ,
450
- "FAST" ,
451
- "MEDIUM" ,
452
- "SLOW"
448
+ export enum ImageCompression {
449
+ NONE = "NONE" ,
450
+ FAST = "FAST" ,
451
+ MEDIUM = "MEDIUM" ,
452
+ SLOW = "SLOW"
453
453
}
454
- enum ColorSpace {
455
- "DeviceRGB" ,
456
- "DeviceGray" ,
457
- "DeviceCMYK" ,
458
- "CalGray" ,
459
- "CalRGB" ,
460
- "Lab" ,
461
- "ICCBased" ,
462
- "Indexed" ,
463
- "Pattern" ,
464
- "Separation" ,
465
- "DeviceN"
454
+ export enum ColorSpace {
455
+ DEVICE_RGB = "DeviceRGB" ,
456
+ DEVICE_GRAY = "DeviceGray" ,
457
+ DEVICE_CMYK = "DeviceCMYK" ,
458
+ CAL_GRAY = "CalGray" ,
459
+ CAL_RGB = "CalRGB" ,
460
+ LAB = "Lab" ,
461
+ ICC_BASED = "ICCBased" ,
462
+ INDEXED = "Indexed" ,
463
+ PATTERN = "Pattern" ,
464
+ SEPARATION = "Separation" ,
465
+ DEVICE_N = "DeviceN"
466
466
}
467
467
468
468
export interface ImageOptions {
@@ -1264,7 +1264,7 @@ declare module "jspdf" {
1264
1264
matrix ?: Matrix ;
1265
1265
}
1266
1266
1267
- interface ShadingPatterStop {
1267
+ export interface ShadingPatterStop {
1268
1268
offset : number ;
1269
1269
color : number [ ] ;
1270
1270
}
You can’t perform that action at this time.
0 commit comments