Interface ComponentTypeEnum

interface ComponentTypeEnum {
    index: number;
    str: string;
    symbol: symbol;
    webgpu: string;
    wgsl: string;
    getSizeInBytes(): number;
    isFloatingPoint(): boolean;
    isInteger(): boolean;
    toJSON(): number;
    toString(): string;
}

Hierarchy (view full)

Properties

index: number
str: string
symbol: symbol
webgpu: string
wgsl: string

Methods