Variable LightTypeConst

LightType: Readonly<{
    Ambient: EnumIO;
    Directional: EnumIO;
    Point: EnumIO;
    Spot: EnumIO;
    from: ((index: number) => LightTypeEnum);
    fromString: ((str: string) => LightTypeEnum);
}> = ...