UNPKG

tm-ng-odometer

Version:

TmNgOdometer: An Angular library for animated numeric counters with precise decimal handling, customizable themes, and odometer-style animations.

18 lines (17 loc) 481 B
/** * Created: 2017-06-15 by Jose Andres * Modified: * - 2025-04-30 by Marco Trinastich: Migrated to TmOdometer 2.x */ import { TmOdometerConfig } from "tm-odometer"; export interface TmNgOdometerConfigModel extends TmOdometerConfig { auto?: boolean; } export declare class TmNgOdometerConfig implements TmNgOdometerConfigModel { animation?: "count" | "slide"; format?: string; theme?: string; value?: number; duration?: number; auto?: boolean; }