MVFv3 API Documentation
    Preparing search index...

    Type Alias FacadeExtensionSchema

    The FacadeExtensionSchema is an object with a single property, facade, which is a record of FloorId to Facade objects.

    type FacadeExtensionSchema = {
        facade: Partial<
            {
                [x: `f_${string}`]: (
                    { floorStackId: `fs_${string}` } & { geometryIds: `g_${string}`[] }
                )[];
            },
        >;
    }
    Index

    Properties

    Properties

    facade: Partial<
        {
            [x: `f_${string}`]: (
                { floorStackId: `fs_${string}` } & { geometryIds: `g_${string}`[] }
            )[];
        },
    >