File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ export declare type HostId = "PHSP" | "PHXS" | "IDSN" | "AICY" | "ILST" | "PPRO" | "PRLD" | "AEFT" | "FLPR" | "AUDT" | "DRWV" | "MUSE" | "KBRG" | "RUSH" ;
2+ declare type HostNameMap = {
3+ [ K in HostId ] : string ;
4+ } ;
5+ export declare const HostApplication : Partial < HostNameMap > ;
16export * from './v9' ;
27export { CSInterface as CSInterfacePromise } from "./utils" ;
38export { default } from './v9' ;
Original file line number Diff line number Diff line change @@ -3,6 +3,22 @@ function __export(m) {
33 for ( var p in m ) if ( ! exports . hasOwnProperty ( p ) ) exports [ p ] = m [ p ] ;
44}
55Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
6+ exports . HostApplication = {
7+ PHSP : "Photohsop" ,
8+ PHXS : "Photoshop" ,
9+ IDSN : "InDesign" ,
10+ AICY : "InCopy" ,
11+ ILST : "Illustrator" ,
12+ PPRO : "Premiere Pro" ,
13+ PRLD : "Prelude" ,
14+ AEFT : "After Effects" ,
15+ FLPR : "Animate (Flash Pro)" ,
16+ AUDT : "Audition" ,
17+ DRWV : "Dreamweaver" ,
18+ MUSE : "Muse" ,
19+ KBRG : "Bridge" ,
20+ RUSH : "Rush"
21+ } ;
622__export ( require ( "./v9" ) ) ;
723var utils_1 = require ( "./utils" ) ;
824exports . CSInterfacePromise = utils_1 . CSInterface ;
Original file line number Diff line number Diff line change 1+ export type HostId = "PHSP" | "PHXS" | "IDSN" | "AICY" | "ILST" | "PPRO" | "PRLD" | "AEFT" | "FLPR" | "AUDT" | "DRWV" | "MUSE" | "KBRG" | "RUSH" ;
2+
3+ type HostNameMap = {
4+ [ K in HostId ] : string
5+ } ;
6+
7+ export const HostApplication : Partial < HostNameMap > = {
8+ PHSP : "Photohsop" ,
9+ PHXS : "Photoshop" ,
10+ IDSN : "InDesign" ,
11+ AICY : "InCopy" ,
12+ ILST : "Illustrator" ,
13+ PPRO : "Premiere Pro" ,
14+ PRLD : "Prelude" ,
15+ AEFT : "After Effects" ,
16+ FLPR : "Animate (Flash Pro)" ,
17+ AUDT : "Audition" ,
18+ DRWV : "Dreamweaver" ,
19+ MUSE : "Muse" ,
20+ KBRG : "Bridge" ,
21+ RUSH : "Rush"
22+ } ;
23+
124export * from './v9' ;
225export { CSInterface as CSInterfacePromise } from "./utils" ;
326export { default } from './v9'
You can’t perform that action at this time.
0 commit comments