Files
lan-manager/web/node_modules/@antv/g-webgpu-engine/es/utils/uniform.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

12 lines
267 B
TypeScript

import type { IUniform } from '@antv/g-webgpu-core';
/**
* 考虑结构体命名, eg:
* a: { b: 1 } -> 'a.b'
* a: [ { b: 1 } ] -> 'a[0].b'
*/
export declare function extractUniforms(uniforms: {
[key: string]: IUniform;
}): {
[key: string]: IUniform;
};