@servicenow/sdk - v4.4.1
    Preparing search index...
    interface ExtendsClauseableNode {
        addExtends(
            texts: WriterFunction | readonly (string | WriterFunction)[],
        ): ExpressionWithTypeArguments[];
        addExtends(text: string): ExpressionWithTypeArguments;
        getExtends(): ExpressionWithTypeArguments[];
        insertExtends(
            index: number,
            texts: WriterFunction | readonly (string | WriterFunction)[],
        ): ExpressionWithTypeArguments[];
        insertExtends(index: number, text: string): ExpressionWithTypeArguments;
        removeExtends(index: number): this;
        removeExtends(extendsNode: ExpressionWithTypeArguments): this;
    }
    Index

    Methods

    • Removes the extends at the specified index.

      Parameters

      • index: number

        Index to remove.

      Returns this

    • Removes the specified extends.

      Parameters

      Returns this