@versatiles/style
    Preparing search index...

    Type Alias SchemaGuess

    SchemaGuess:
        | {
            candidates: SchemaScore[];
            schema: SchemaName
            | undefined;
            type: "vector";
        }
        | { type: "raster" }
        | { type: "unknown" }

    The result of guessSchema.

    • vectorschema is the recognised schema, or undefined when none qualifies or two tie. candidates scores every schema, best first, so a caller can show why.
    • raster — a TileJSON without vector_layers. Raster tiles have no schema.
    • unknown — not a TileJSON at all.