map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface MutableConstructor<Members>

    Represents the type of a mutable class created from a definition. Instances of this type are created by calling the declare() function.

    Note that both function call syntax and new are supported ways to create a mutable instance.

    interface MutableConstructor<Members> {
        new MutableConstructor(
            options?: Partial<Properties<Mutable<Members>>>,
        ): Mutable<Members>;
        (options?: Partial<Properties<Mutable<Members>>>): Mutable<Members>;
    }

    Type Parameters

    • Members
    Index

    Constructors

    Constructors