mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
28 lines
939 B
TypeScript
28 lines
939 B
TypeScript
// Type definitions for angular-tooltips 1.2
|
|
// Project: http://720kb.github.io/angular-tooltips
|
|
// Definitions by: Leonard Thieu <https://github.com/leonard-thieu>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
declare const AngularTooltips: '720kb.tooltips';
|
|
export = AngularTooltips;
|
|
|
|
declare namespace AngularTooltips {
|
|
interface TooltipsConfProvider {
|
|
configure(options: TooltipsConfProviderOptions): void;
|
|
}
|
|
|
|
interface TooltipsConfProviderOptions {
|
|
side?: 'left' | 'right' | 'top' | 'bottom' | 'top left' | 'top right' | 'bottom left' | 'bottom right';
|
|
showTrigger?: string;
|
|
hideTrigger?: string;
|
|
class?: string;
|
|
smart?: boolean;
|
|
closeButton?: boolean;
|
|
size?: 'small' | 'medium' | 'large';
|
|
speed?: 'slow' | 'medium' | 'fast';
|
|
tooltipTemplateUrlCache?: boolean;
|
|
show?: boolean;
|
|
}
|
|
}
|