Store 属性类型

interface IStorePropertyData {
    code?: string;
    name: string;
    type?:
        | "object"
        | "function"
        | "property"
        | "text"
        | "type"
        | "class"
        | "constant"
        | "enum"
        | "interface"
        | "keyword"
        | "method"
        | "namespace"
        | "variable";
}

Properties

Properties

code?: string

对应的源码

name: string

属性名

type?:
    | "object"
    | "function"
    | "property"
    | "text"
    | "type"
    | "class"
    | "constant"
    | "enum"
    | "interface"
    | "keyword"
    | "method"
    | "namespace"
    | "variable"

codemirror 中对应的类型