Skip to content

Commit 1407eed

Browse files
committed
add v10 & v11
1 parent b87be89 commit 1407eed

File tree

4 files changed

+152
-0
lines changed

4 files changed

+152
-0
lines changed

lib/v10.d.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**************************************************************************************************
2+
*
3+
* ADOBE SYSTEMS INCORPORATED
4+
* Copyright 2020 Adobe Systems Incorporated
5+
* All Rights Reserved.
6+
*
7+
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
8+
* terms of the Adobe license agreement accompanying it. If you have received this file from a
9+
* source other than Adobe, then your use, modification, or distribution of it requires the prior
10+
* written permission of Adobe.
11+
*
12+
**************************************************************************************************/
13+
import CSInterfaceV9 from "./v9";
14+
/**
15+
* CSInterface - v10.0.0
16+
*/
17+
declare class CSInterface extends CSInterfaceV9 {
18+
}
19+
export * from './v9';
20+
export default CSInterface;

lib/v10.js

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
"use strict";
2+
/**************************************************************************************************
3+
*
4+
* ADOBE SYSTEMS INCORPORATED
5+
* Copyright 2020 Adobe Systems Incorporated
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
9+
* terms of the Adobe license agreement accompanying it. If you have received this file from a
10+
* source other than Adobe, then your use, modification, or distribution of it requires the prior
11+
* written permission of Adobe.
12+
*
13+
**************************************************************************************************/
14+
var __extends = (this && this.__extends) || (function () {
15+
var extendStatics = function (d, b) {
16+
extendStatics = Object.setPrototypeOf ||
17+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
19+
return extendStatics(d, b);
20+
};
21+
return function (d, b) {
22+
if (typeof b !== "function" && b !== null)
23+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
24+
extendStatics(d, b);
25+
function __() { this.constructor = d; }
26+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27+
};
28+
})();
29+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
30+
if (k2 === undefined) k2 = k;
31+
var desc = Object.getOwnPropertyDescriptor(m, k);
32+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
33+
desc = { enumerable: true, get: function() { return m[k]; } };
34+
}
35+
Object.defineProperty(o, k2, desc);
36+
}) : (function(o, m, k, k2) {
37+
if (k2 === undefined) k2 = k;
38+
o[k2] = m[k];
39+
}));
40+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
41+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
42+
};
43+
Object.defineProperty(exports, "__esModule", { value: true });
44+
var v9_1 = require("./v9");
45+
/**
46+
* CSInterface - v10.0.0
47+
*/
48+
var CSInterface = /** @class */ (function (_super) {
49+
__extends(CSInterface, _super);
50+
function CSInterface() {
51+
return _super !== null && _super.apply(this, arguments) || this;
52+
}
53+
return CSInterface;
54+
}(v9_1.default));
55+
__exportStar(require("./v9"), exports);
56+
exports.default = CSInterface;

lib/v11.d.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**************************************************************************************************
2+
*
3+
* ADOBE SYSTEMS INCORPORATED
4+
* Copyright 2020 Adobe Systems Incorporated
5+
* All Rights Reserved.
6+
*
7+
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
8+
* terms of the Adobe license agreement accompanying it. If you have received this file from a
9+
* source other than Adobe, then your use, modification, or distribution of it requires the prior
10+
* written permission of Adobe.
11+
*
12+
**************************************************************************************************/
13+
import CSInterfaceV10 from "./v10";
14+
/**
15+
* CSInterface - v10.0.0
16+
*/
17+
declare class CSInterface extends CSInterfaceV10 {
18+
}
19+
export * from './v10';
20+
export default CSInterface;

lib/v11.js

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
"use strict";
2+
/**************************************************************************************************
3+
*
4+
* ADOBE SYSTEMS INCORPORATED
5+
* Copyright 2020 Adobe Systems Incorporated
6+
* All Rights Reserved.
7+
*
8+
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
9+
* terms of the Adobe license agreement accompanying it. If you have received this file from a
10+
* source other than Adobe, then your use, modification, or distribution of it requires the prior
11+
* written permission of Adobe.
12+
*
13+
**************************************************************************************************/
14+
var __extends = (this && this.__extends) || (function () {
15+
var extendStatics = function (d, b) {
16+
extendStatics = Object.setPrototypeOf ||
17+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
18+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
19+
return extendStatics(d, b);
20+
};
21+
return function (d, b) {
22+
if (typeof b !== "function" && b !== null)
23+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
24+
extendStatics(d, b);
25+
function __() { this.constructor = d; }
26+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
27+
};
28+
})();
29+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
30+
if (k2 === undefined) k2 = k;
31+
var desc = Object.getOwnPropertyDescriptor(m, k);
32+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
33+
desc = { enumerable: true, get: function() { return m[k]; } };
34+
}
35+
Object.defineProperty(o, k2, desc);
36+
}) : (function(o, m, k, k2) {
37+
if (k2 === undefined) k2 = k;
38+
o[k2] = m[k];
39+
}));
40+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
41+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
42+
};
43+
Object.defineProperty(exports, "__esModule", { value: true });
44+
var v10_1 = require("./v10");
45+
/**
46+
* CSInterface - v10.0.0
47+
*/
48+
var CSInterface = /** @class */ (function (_super) {
49+
__extends(CSInterface, _super);
50+
function CSInterface() {
51+
return _super !== null && _super.apply(this, arguments) || this;
52+
}
53+
return CSInterface;
54+
}(v10_1.default));
55+
__exportStar(require("./v10"), exports);
56+
exports.default = CSInterface;

0 commit comments

Comments
 (0)