grafana_bak/public/app/angular/promiseToDigest.ts
2025-04-01 10:38:02 +09:00

4 lines
149 B
TypeScript

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