├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CEPEngine_extensions.d.ts ├── CHANGELOG.md ├── ExtensionManifest.d.ts ├── LICENSE ├── README.md ├── package.json ├── release.config.cjs ├── src ├── IMSInterface.ts ├── index.ts ├── utils.ts ├── v10.ts ├── v11.ts ├── v8.ts └── v9.ts ├── tsconfig.json └── window.d.ts /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /CEPEngine_extensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/CEPEngine_extensions.d.ts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ExtensionManifest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/ExtensionManifest.d.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/package.json -------------------------------------------------------------------------------- /release.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/release.config.cjs -------------------------------------------------------------------------------- /src/IMSInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/src/IMSInterface.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/v10.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/src/v10.ts -------------------------------------------------------------------------------- /src/v11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/src/v11.ts -------------------------------------------------------------------------------- /src/v8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/src/v8.ts -------------------------------------------------------------------------------- /src/v9.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/src/v9.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/tsconfig.json -------------------------------------------------------------------------------- /window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExtendScript/CSInterface/HEAD/window.d.ts --------------------------------------------------------------------------------