@servicenow/sdk - v4.4.1
    Preparing search index...

    Interface ImplementsClauseableNode

    interface ImplementsClauseableNode {
        addImplements(text: string): ExpressionWithTypeArguments;
        addImplements(
            text: WriterFunction | readonly (string | WriterFunction)[],
        ): ExpressionWithTypeArguments[];
        getImplements(): ExpressionWithTypeArguments[];
        insertImplements(
            index: number,
            texts: WriterFunction | readonly (string | WriterFunction)[],
        ): ExpressionWithTypeArguments[];
        insertImplements(index: number, text: string): ExpressionWithTypeArguments;
        removeImplements(index: number): this;
        removeImplements(implementsNode: ExpressionWithTypeArguments): this;
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Removes the implements at the specified index.

      Parameters

      • index: number

        Index to remove.

      Returns this

    • Removes the specified implements.

      Parameters

      Returns this