TenantAtlas/apps/platform/.pnpm-store/v10/files/ea/b5233a7ac35d7310c1d133a2f2be4ede9bb855691191aff592b6fc33304f60a15c59433544faf7c11dad23d20ea1967ef41d47d01abf0cb7bfff289a1f23b7
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

8 lines
351 B
Plaintext

import { asyncScheduler } from '../scheduler/async';
import { audit } from './audit';
import { timer } from '../observable/timer';
export function auditTime(duration, scheduler) {
if (scheduler === void 0) { scheduler = asyncScheduler; }
return audit(function () { return timer(duration, scheduler); });
}
//# sourceMappingURL=auditTime.js.map