@mendix/extensions-api - v0.6.0
    Preparing search index...

    Interface ProjectConversion

    A unit is a container of elements, it can not contain other units.

    interface ProjectConversion {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "Projects$ProjectConversion";
        markers: OneTimeConversionMarker[];
        addOneTimeConversionMarker(
            options: OneTimeConversionMarkerCreationOptions,
        ): Promise<OneTimeConversionMarker>;
        getOneTimeConversionMarker(
            name: string,
        ): undefined | OneTimeConversionMarker;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Projects$ProjectConversion"

    The type of the element.

    Methods