Type Alias GeometryTypeKnowledgeExperimental

GeometryTypeKnowledge: {
    state: "known";
    type: GeometryKind;
} | {
    state: "mixed";
    types: readonly [GeometryKind, GeometryKind, ...GeometryKind[]];
} | {
    native?: NativeTypeReference;
    reason:
        | "missing"
        | "unrecognized"
        | "conflicting"
        | "unsupported";
    state: "unknown";
}