8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
declare module '*.wgsl?raw' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
interface HTMLCanvasElement {
|
|
getContext(contextId: 'webgpu'): GPUCanvasContext | null;
|
|
}
|