Adding reload to datasourceSrv (#44217)

This commit is contained in:
Timur Olzhabayev
2022-01-24 10:45:05 +01:00
committed by GitHub
parent 732c2ebb37
commit c3f69cc4d9
8 changed files with 55 additions and 15 deletions

View File

@ -28,6 +28,11 @@ export interface DataSourceSrv {
ref?: DataSourceRef | string | null,
scopedVars?: ScopedVars
): DataSourceInstanceSettings | undefined;
/**
* Reloads the DataSourceSrv
*/
reload(): void;
}
/** @public */