├── .gitignore ├── LICENSE ├── README.md ├── docs ├── apex-nitro-ts-configuration.png ├── intellisense-atom.gif └── intellisense-code.gif ├── examples └── scratch.ts ├── package.json ├── tsconfig.json └── types └── orclapex-js ├── index.d.ts ├── orclapex-js-tests.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/README.md -------------------------------------------------------------------------------- /docs/apex-nitro-ts-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/docs/apex-nitro-ts-configuration.png -------------------------------------------------------------------------------- /docs/intellisense-atom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/docs/intellisense-atom.gif -------------------------------------------------------------------------------- /docs/intellisense-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/docs/intellisense-code.gif -------------------------------------------------------------------------------- /examples/scratch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/examples/scratch.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/orclapex-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/types/orclapex-js/index.d.ts -------------------------------------------------------------------------------- /types/orclapex-js/orclapex-js-tests.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /types/orclapex-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/types/orclapex-js/tsconfig.json -------------------------------------------------------------------------------- /types/orclapex-js/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzziebrain/orclapex-js/HEAD/types/orclapex-js/tslint.json --------------------------------------------------------------------------------