Type Alias ConditionResolvable
ConditionResolvable:
| undefined
| boolean
| any
| ((context: any) => any)
| Partial<
{
features: string[];
formats: string[];
modes: string[];
project: boolean;
selected: {
animation?: boolean;
animation_controller?: boolean;
animation_controller_state?: boolean;
cube?: boolean;
element?: boolean;
group?: boolean;
keyframe?: boolean;
locator?: boolean;
mesh?: boolean;
null_any?: boolean;
outliner?: boolean;
texture?: boolean;
texture_mesh?: boolean;
};
tools: string[];
method(context: any): boolean;
},
>