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

    Interface ApplicableRefactorInfo

    A set of one or more available refactoring actions, grouped under a parent refactoring.

    interface ApplicableRefactorInfo {
        actions: tsc.RefactorActionInfo[];
        description: string;
        inlineable?: boolean;
        name: string;
    }
    Index

    Properties

    description: string

    A description of this refactoring category to show to the user. If the refactoring gets inlined (see below), this text will not be visible.

    inlineable?: boolean

    Inlineable refactorings can have their actions hoisted out to the top level of a context menu. Non-inlineanable refactorings should always be shown inside their parent grouping.

    If not specified, this value is assumed to be 'true'

    name: string

    The programmatic name of the refactoring