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

    Node that supports overloads.

    interface OverloadableNode {
        getImplementation(): OverloadableNode | undefined;
        getImplementationOrThrow(message?: string | (() => string)): this;
        getOverloads(): OverloadableNode[];
        isImplementation(): boolean;
        isOverload(): boolean;
    }
    Index

    Methods

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

      Returns OverloadableNode | undefined

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

      Parameters

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

      Returns this

    • Gets all the overloads associated with this node.

      Returns OverloadableNode[]

    • Gets if this is the implementation.

      Returns boolean

    • Gets if this is not the implementation.

      Returns boolean