Interface IModuleBase

interface IModuleBase {
    onAwake?: ((app?) => any);
    onDestroy?: (() => any);
    onDisable?: (() => any);
    onEnable?: (() => any);
    [key: string]: any;
}

Hierarchy (view full)

Indexable

[key: string]: any

Properties

onAwake?: ((app?) => any)

Type declaration

    • (app?): any
    • Parameters

      • Optional app: any

      Returns any

onDestroy?: (() => any)

Type declaration

    • (): any
    • Returns any

onDisable?: (() => any)

Type declaration

    • (): any
    • Returns any

onEnable?: (() => any)

Type declaration

    • (): any
    • Returns any