├── .github └── workflows │ └── build-and-deploy.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── dist └── index.d.ts ├── extra.d.ts ├── generate.mjs ├── generated └── index.d.ts ├── package.json ├── prettier.config.js ├── tests ├── .gitignore ├── index.ts ├── ts4.6 │ ├── package.json │ └── tsconfig.json ├── ts4.7 │ ├── package.json │ └── tsconfig.json ├── ts4.9 │ ├── package.json │ └── tsconfig.json ├── ts5.2 │ ├── package.json │ └── tsconfig.json ├── ts5.8 │ ├── package.json │ └── tsconfig.json ├── ts5.9 │ ├── package.json │ └── tsconfig.json └── tsconfig.json └── tsdoc-src ├── .gitignore ├── package-lock.json ├── package.json ├── tsconfig.json └── typedoc.json /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /out/ 3 | node_modules 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /extra.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/extra.d.ts -------------------------------------------------------------------------------- /generate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/generate.mjs -------------------------------------------------------------------------------- /generated/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/generated/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | printWidth: 0, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tests/ts4.6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts4.6/package.json -------------------------------------------------------------------------------- /tests/ts4.6/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts4.6/tsconfig.json -------------------------------------------------------------------------------- /tests/ts4.7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts4.7/package.json -------------------------------------------------------------------------------- /tests/ts4.7/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts4.7/tsconfig.json -------------------------------------------------------------------------------- /tests/ts4.9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts4.9/package.json -------------------------------------------------------------------------------- /tests/ts4.9/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts4.9/tsconfig.json -------------------------------------------------------------------------------- /tests/ts5.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts5.2/package.json -------------------------------------------------------------------------------- /tests/ts5.2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts5.2/tsconfig.json -------------------------------------------------------------------------------- /tests/ts5.8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts5.8/package.json -------------------------------------------------------------------------------- /tests/ts5.8/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts5.8/tsconfig.json -------------------------------------------------------------------------------- /tests/ts5.9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts5.9/package.json -------------------------------------------------------------------------------- /tests/ts5.9/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/ts5.9/tsconfig.json -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsdoc-src/.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | -------------------------------------------------------------------------------- /tsdoc-src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tsdoc-src/package-lock.json -------------------------------------------------------------------------------- /tsdoc-src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tsdoc-src/package.json -------------------------------------------------------------------------------- /tsdoc-src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tsdoc-src/tsconfig.json -------------------------------------------------------------------------------- /tsdoc-src/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpuweb/types/HEAD/tsdoc-src/typedoc.json --------------------------------------------------------------------------------