You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
644 B
21 lines
644 B
import { Widget } from "../../core/widget"; |
|
interface SingleOpt { |
|
container?: any; |
|
belowMouse?: boolean; |
|
} |
|
export declare class Single extends Widget { |
|
_showToolTip(e: Event, opt?: SingleOpt): void; |
|
_hideTooltip(): void; |
|
_clearTimeOut(): void; |
|
enableHover(opt?: SingleOpt): void; |
|
disabledHover(): void; |
|
setTitle(title: string | Function, opt?: SingleOpt): void; |
|
setWarningTitle(title: string, opt?: SingleOpt): void; |
|
setTipType(v: string): void; |
|
getTipType(): string; |
|
isReadOnly(): boolean; |
|
getTitle(): string; |
|
getWarningTitle(): string; |
|
populate(..._args: any[]): void; |
|
} |
|
export {};
|
|
|