3
0
mirror of https://github.com/grafana/grafana.git synced 2025-02-25 18:55:37 -06:00
grafana/public/app/angular/promiseToDigest.ts

4 lines
149 B
TypeScript
Raw Normal View History

import { IScope } from 'angular';
export const promiseToDigest = ($scope: IScope) => (promise: Promise<any>) => promise.finally($scope.$evalAsync);