Interface IMaterialDatabase

    interface IMaterialDatabase {
        [key: string]: {
            children: {
                children: {
                    label: string;
                    symbol: string;
                    value: number | string;
                }[];
                key: string;
                label: string;
            }[];
            label: string;
        };
    }

    Indexable

    [key: string]: {
        children: {
            children: {
                label: string;
                symbol: string;
                value: number | string;
            }[];
            key: string;
            label: string;
        }[];
        label: string;
    }
    • children: {
          children: {
              label: string;
              symbol: string;
              value: number | string;
          }[];
          key: string;
          label: string;
      }[]
    • label: string

    Generated using TypeDoc and TypeDoc Airthium Plugin