Hinting parameters interface

interface HintOptions {
    callback: string;
    excmd: string;
    immediate: boolean;
    includeInvisible: boolean;
    jshints: boolean;
    openMode: OpenMode;
    pipeAttribute: string;
    rapid: boolean;
    selectors: string[];
    selectorsExclude: string[];
    textFilter: string | RegExp;
    warnings: string[];
}

Implemented by

Index
callback: string
excmd: string
immediate: boolean
includeInvisible: boolean
jshints: boolean
openMode: OpenMode
pipeAttribute: string
rapid: boolean
selectors: string[]
selectorsExclude: string[]
textFilter: string | RegExp
warnings: string[]