@servicenow/sdk - v4.4.1
    Preparing search index...
    interface AbstractableNode {
        getAbstractKeyword(): Node<tsc.Node> | undefined;
        getAbstractKeywordOrThrow(message?: string | (() => string)): Node;
        isAbstract(): boolean;
        setIsAbstract(isAbstract: boolean): this;
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Gets the abstract keyword or undefined if it doesn't exist.

      Returns Node<tsc.Node> | undefined

    • Gets the abstract keyword or throws if it doesn't exist.

      Parameters

      • Optionalmessage: string | (() => string)

      Returns Node

    • Gets if the node is abstract.

      Returns boolean

    • Sets if the node is abstract.

      Parameters

      • isAbstract: boolean

        If it should be abstract or not.

      Returns this