UNPKG

cronometro-lib

Version:
20 lines (19 loc) 375 B
import { Observable } from 'rxjs'; /** * Cuenta de manera ascendente de 1 en 1 */ export declare class Contador { /** * @ignore */ private valorLimite; /** * @ignore */ constructor(valorLimite?: number); /** * Cuenta de 0 hasta el limite establecido * @returns Observable<string> */ start(): Observable<string>; }