# TimeInterval

```typescript
interface TimeInterval<T> {
  value: T;
  interval: number;
}
```

## Propiedades

| Propiedad | Tipo     | Descripción |
| --------- | -------- | ----------- |
| value     | `T`      |             |
| interval  | `number` |             |

## Recursos adicionales

[![Source code](https://github.com/puntotech/rxjs-docu/blob/master/doc/api/index/assets/icons/source-code.png)](https://github.com/ReactiveX/rxjs/blob/6.5.5/src/internal/types.ts#L18-L22)

[Documentación oficial en inglés](https://rxjs.dev/api/index/interface/TimeInterval)
