Files
lan-manager/web/node_modules/@antv/g-webgpu/es/World.d.ts
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

14 lines
500 B
TypeScript

import { IConfig, KernelBundle } from '@antv/g-webgpu-core';
import { WebGLEngine } from '@antv/g-webgpu-engine';
import { Kernel } from './Kernel';
export declare class World {
static create(config?: Partial<IConfig>): World;
engine: WebGLEngine;
private readonly configService;
setConfig(config: Partial<IConfig>): void;
setEngine(engine: WebGLEngine): void;
createEntity(): number;
createKernel(precompiledBundle: KernelBundle | string): Kernel;
destroy(): void;
}