@swizzyweb/swizzy-web-service
    Preparing search index...

    Interface IWebService

    interface IWebService {
        instanceId: string;
        name: string;
        install(props: IRunProps): Promise<IRunResult>;
        isInstalled(): boolean;
        toJson(): any;
        toString(): string;
        uninstall(props: IRunProps): Promise<any>;
    }

    Implemented by

    Index

    Properties

    instanceId: string

    instanceId of WebService.

    name: string

    Friendly name of webservice.

    Methods