-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathv11.ts
More file actions
24 lines (20 loc) · 796 Bytes
/
v11.ts
File metadata and controls
24 lines (20 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**************************************************************************************************
*
* ADOBE SYSTEMS INCORPORATED
* Copyright 2020 Adobe Systems Incorporated
* All Rights Reserved.
*
* NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the
* terms of the Adobe license agreement accompanying it. If you have received this file from a
* source other than Adobe, then your use, modification, or distribution of it requires the prior
* written permission of Adobe.
*
**************************************************************************************************/
import CSInterfaceV10 from "./v10";
/**
* CSInterface - v10.0.0
*/
class CSInterface extends CSInterfaceV10 {
}
export * from './v10'
export default CSInterface;