zibri
    Preparing search index...

    Runs just before the app initializes. This is useful for things like the data source service, which other services might rely on being available on initialization.

    In most cases you probably want to implement OnAppInit, as your service probably does not fall in that category.

    interface BeforeAppInit {
        beforeAppInit: (app: ZibriApplication) => void | Promise<void>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    beforeAppInit: (app: ZibriApplication) => void | Promise<void>

    Runs just before the app initializes. This is useful for things like the data source service, which other services might rely on being available on initialization.

    In most cases you probably want to implement OnAppInit, as your service probably does not fall in that category.