mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 04:04:00 -06:00
d1e52d4788
* type fixes * couple more * just a couple more * small fixes to prometheus typings * improve some more datasource types
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
import { Observable } from 'rxjs';
|
|
|
|
import { toEmitValues } from './toEmitValues';
|
|
import { toEmitValuesWith } from './toEmitValuesWith';
|
|
import { ObservableMatchers } from './types';
|
|
|
|
export const matchers: ObservableMatchers<void, Observable<unknown>> = {
|
|
toEmitValues,
|
|
toEmitValuesWith,
|
|
};
|