Skip to main content

Interface: InstanceOptions

Defined in: core/src/ObjectFactory.ts:11

The set of options to use when creating new instances of objects.

Properties

args?

optional args?: any[]

Defined in: core/src/ObjectFactory.ts:13

The list of arguments to pass to the class constructor.


initialize?

optional initialize?: boolean

Defined in: core/src/ObjectFactory.ts:17

Set to true to perform initialization of the object after creation, otherwise set to false. Default is true.


name?

optional name?: string

Defined in: core/src/ObjectFactory.ts:15

The unique name of the object instance.