chore: add checks for unused ts exports

This commit is contained in:
zhom
2025-06-17 16:13:17 +04:00
parent 08453fe9a6
commit ee8c6dcc85
10 changed files with 32 additions and 414 deletions
-19
View File
@@ -43,22 +43,3 @@ export interface AppUpdateInfo {
is_nightly: boolean;
published_at: string;
}
export interface AppVersionInfo {
version: string;
is_nightly: boolean;
}
export type PermissionType = "microphone" | "camera" | "location";
export type PermissionStatus =
| "granted"
| "denied"
| "not_determined"
| "restricted";
export interface PermissionInfo {
permission_type: PermissionType;
status: PermissionStatus;
description: string;
}