@servicenow/sdk - v4.4.1
    Preparing search index...
    interface StaticableNode {
        getStaticKeyword(): Node<tsc.Node> | undefined;
        getStaticKeywordOrThrow(message?: string | (() => string)): Node;
        isStatic(): boolean;
        setIsStatic(value: boolean): this;
    }
    Index

    Methods

    • Gets the static keyword, or undefined if none exists.

      Returns Node<tsc.Node> | undefined

    • Gets the static keyword, or throws if none exists.

      Parameters

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

      Returns Node

    • Gets if it's static.

      Returns boolean

    • Sets if the node is static.

      Parameters

      • value: boolean

        If it should be static or not.

      Returns this