@types/three
Version:
TypeScript definitions for three
11 lines (7 loc) • 363 B
TypeScript
import { TypedArray } from "../../core/BufferAttribute.js";
import StorageBufferAttribute from "./StorageBufferAttribute.js";
declare class IndirectStorageBufferAttribute extends StorageBufferAttribute {
readonly isIndirectStorageBufferAttribute: true;
constructor(array: TypedArray, itemSize: number);
}
export default IndirectStorageBufferAttribute;