chore: refactor interfaces (#2849)

* chore: refactor interfaces

* chore: fix uptime
This commit is contained in:
Alex Inkin
2025-03-17 22:07:52 +04:00
committed by GitHub
parent be0371fb11
commit a18ab7f1e9
26 changed files with 917 additions and 620 deletions

View File

@@ -1,3 +0,0 @@
export function mask(val: string, max: number = Infinity): string {
return '●'.repeat(Math.min(max, val.length))
}