├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── dist ├── eslintrc.json └── scriptable.d.ts ├── dts.prettierrc.json ├── eslint-config ├── eslintrc.json ├── index.js ├── package.json └── readme.md ├── example ├── README.md └── scriptable │ ├── Welcome to Scriptable.js │ ├── jsconfig.json │ └── package.json ├── getInvalidUrlsFromTern.js ├── globals.js ├── ignoreFunctionsWithoutType.js ├── jsconfig.json ├── package.json ├── template.d.ts └── typoCorrection.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/README.md -------------------------------------------------------------------------------- /dist/eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/dist/eslintrc.json -------------------------------------------------------------------------------- /dist/scriptable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/dist/scriptable.d.ts -------------------------------------------------------------------------------- /dts.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/dts.prettierrc.json -------------------------------------------------------------------------------- /eslint-config/eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/eslint-config/eslintrc.json -------------------------------------------------------------------------------- /eslint-config/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./eslintrc.json"); 2 | -------------------------------------------------------------------------------- /eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/eslint-config/package.json -------------------------------------------------------------------------------- /eslint-config/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/eslint-config/readme.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/example/README.md -------------------------------------------------------------------------------- /example/scriptable/Welcome to Scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/example/scriptable/Welcome to Scriptable.js -------------------------------------------------------------------------------- /example/scriptable/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/example/scriptable/jsconfig.json -------------------------------------------------------------------------------- /example/scriptable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/example/scriptable/package.json -------------------------------------------------------------------------------- /getInvalidUrlsFromTern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/getInvalidUrlsFromTern.js -------------------------------------------------------------------------------- /globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/globals.js -------------------------------------------------------------------------------- /ignoreFunctionsWithoutType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/ignoreFunctionsWithoutType.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/package.json -------------------------------------------------------------------------------- /template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/template.d.ts -------------------------------------------------------------------------------- /typoCorrection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schl3ck/ios-scriptable-types/HEAD/typoCorrection.json --------------------------------------------------------------------------------