You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Encapsulates a CEP-based extension to an Adobe application.
100
102
*/
101
-
exportclassExtension{
103
+
classExtension{
102
104
/**
103
105
* @param id The unique identifier of this extension.
104
106
* @param name The localizable display name of this extension.
@@ -133,7 +135,7 @@ type EventScope = "GLOBAL" | "APPLICATION";
133
135
/**
134
136
* A standard JavaScript event, the base class for CEP events.
135
137
*/
136
-
exportclassCSEvent{
138
+
classCSEvent{
137
139
/**
138
140
* Event-specific data.
139
141
*/
@@ -153,7 +155,7 @@ export class CSEvent {
153
155
* @FIXME: Interface / enum ?
154
156
* Stores operating-system-specific location constants for use in the CSInterface.getSystemPath() method.
155
157
*/
156
-
exportclassSystemPath{
158
+
classSystemPath{
157
159
/**
158
160
* The path to user data.
159
161
*/
@@ -183,7 +185,7 @@ export class SystemPath {
183
185
/**
184
186
* Stores color-type constants.
185
187
*/
186
-
exportenumColorType{
188
+
enumColorType{
187
189
/**
188
190
* RGB color type.
189
191
*/
@@ -209,7 +211,7 @@ type RGBNumber = number;
209
211
* All values are in the range [0.0 to 255.0]. Invalid numeric values are
210
212
* converted to numbers within this range.
211
213
*/
212
-
exportclassRGBColor{
214
+
classRGBColor{
213
215
/**
214
216
* @param red The red value, in the range [0.0 to 255.0].
215
217
* @param green The green value, in the range [0.0 to 255.0].
@@ -230,7 +232,7 @@ export class RGBColor {
230
232
* or the x component is 0 and the y component is positive or negative for
231
233
* an up or down direction.
232
234
*/
233
-
exportclassDirection{
235
+
classDirection{
234
236
/**
235
237
* @param x The horizontal component of the point.
236
238
* @param y The vertical component of the point.
@@ -249,7 +251,7 @@ type GradientOffset = number;
249
251
/**
250
252
* Stores gradient stop information.
251
253
*/
252
-
exportclassGradientStop{
254
+
classGradientStop{
253
255
/**
254
256
* @param offset The offset of the gradient stop, in the range [0.0 to 1.0].
255
257
* @param rgbColor The color of the gradient at this point, an RGBColor object.
@@ -263,7 +265,7 @@ export class GradientStop {
263
265
/**
264
266
* Stores gradient color information.
265
267
*/
266
-
exportclassGradientColor{
268
+
classGradientColor{
267
269
/**
268
270
* @FIXME: Documentation tell us "gradientStopList" but the Javascript say "arrGradientStop"
269
271
*/
@@ -288,7 +290,7 @@ export class GradientColor {
288
290
*
289
291
* @FIXME: use Conditional Type for the constructor
290
292
*/
291
-
exportclassUIColor{
293
+
classUIColor{
292
294
/**
293
295
* @param type The color type, 1 for "rgb" and 2 for "gradient". The supplied color object must correspond to this type.
294
296
* @param antialiasLevel The anti-alias level constant.
@@ -304,7 +306,7 @@ export class UIColor {
304
306
/**
305
307
* Stores window-skin properties, such as color and font. All color parameter values are UIColor objects except that systemHighlightColor is RGBColor object.
0 commit comments