$ cnpm install @webgpu/types
This package defines Typescript types (.d.ts) for the upcoming WebGPU standard.
This package matches the work-in-progress WebGPU API, which is currently unstable!
Use this package to augment the ambient "dom" type definitions with the new definitions for WebGPU.
This repo also generates typedoc docs here: https://gpuweb.github.io/types
See the TypeScript handbook.
npm install --save @webgpu/typesyarn add @webgpu/typestsc and tsc-based bundlersIn tsconfig.json:
{
// ...
"compilerOptions": {
// ...
"typeRoots": [ "./node_modules/@webgpu/types", "./node_modules/@types"]
}
}
In webpack.config.js add:
"types": ["@webgpu/types"]
(may not be necessary with tsc config above - untested)
/// <reference types="@webgpu/types" />
Please contribute a PR to add instructions for other setups or improve existing instructions. :)
git submodule update --initgpuweb changes: pushd gpuweb && git checkout main && git pull && popdnpm cigenerated/index.d.ts: npm run generategenerated/index.d.ts and dist/index.d.ts.
The generated file is tracked by Git so you can see what has changed.
Update the latter according to changes from the former.
Note the generated/ and dist/ files are not the same.
See below for intentional differences.npm run formatMost or all of these should be fixed in the generator over time.
Array changed to Iterable for WebIDL sequences in argument positions.any changed to object for WebIDL object.| SharedArrayBuffer added for [AllowShared] BufferSource.The following differences are TODO: should be changed in the final result.
The following differences will remain.
onuncapturederror strongly typed.getContext definitions.GPUExtent3DStrict and GPUOrigin2DStrict.(only for people who have npm publish access)
git checkout main && git pull git@github.com:gpuweb/types.git main && git submodule update --init && npm version patch && git push git@github.com:gpuweb/types.git main --tags && npm publishgit checkout maingit pull https://github.com/gpuweb/types.git main
origin, just make sure you are referring to the right repo)git submodule update --initnpm version patchgit push https://github.com/gpuweb/types.git main --tagsnpm publish --otp=<code>
<code> with the one-time password from your authenticator, since two-factors authentication is required to publish.npm adduser first and it will guide you through adding the npm account.Copyright 2013 - present © cnpmjs.org