Type Alias UngredLibElement

UngredLibElement: {
    complexTypes?: ComplexType[];
    definition: UngredLibElementDefinition;
    isVisible?: string;
    name: string;
    svg?: {
        defs: {
            style?: Record<string, PathAttrsCommon>;
        };
        template?: {
            name: string;
            size: DOMRect | null;
            svg: CellPaths[];
        };
        views?: UngredView;
    };
    URI: string;
}