chore: single line block comments (#30852)

This commit is contained in:
Daniel Dietzler 2026-08-18 17:55:26 +02:00 committed by GitHub
parent 80a90fabf3
commit 03da1ba108
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 102 additions and 294 deletions

View file

@ -6,13 +6,9 @@ import { handleError } from '$lib/utils/handle-error';
* and allowing operations to check if they're still valid.
*/
export class InvocationTracker {
/**
Counter for the number of invocations that have been started
*/
/** Counter for the number of invocations that have been started */
invocationsStarted = 0;
/**
Counter for the number of invocations that have been completed
*/
/** Counter for the number of invocations that have been completed */
invocationsEnded = 0;
constructor() {}