DefinitelyTyped/types/tinycon/index.d.ts
2018-06-13 15:25:07 +02:00

19 lines
519 B
TypeScript

// Type definitions for tinycon 0.6
// Project: https://github.com/tommoor/tinycon
// Definitions by: Daniel Waxweiler <https://github.com/dwaxweiler>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export function setBubble(count: number): void;
export function setOptions(options: TinyconOptions): void;
export interface TinyconOptions {
abbreviate?: boolean;
background?: string;
color?: string;
fallback?: boolean;
font?: string;
height?: number;
width?: number;
}