Datalayer VS Code Extension - v0.0.4
    Preparing search index...

    Lifecycle interface for services.

    interface ILifecycle {
        dispose(): Promise<void>;
        initialize(): Promise<void>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    • Disposes the service and cleans up resources. Should be called during extension deactivation.

      Returns Promise<void>