wesl
    Preparing search index...

    Interface TypeRefElem

    a reference to a type, like 'f32', or 'MyStruct', or 'ptr<storage, array, read_only>'

    interface TypeRefElem {
        contents: AbstractElem[];
        end: number;
        kind: "type";
        name: RefIdent;
        start: number;
        templateParams?: TypeTemplateParameter[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    contents: AbstractElem[]
    end: number
    kind: "type"
    name: RefIdent
    start: number
    templateParams?: TypeTemplateParameter[]