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
+1 -1
View File
@@ -20,7 +20,7 @@ const loadMacOSPermissions = async () => {
export type PermissionType = "microphone" | "camera";
export interface UsePermissionsReturn {
interface UsePermissionsReturn {
requestPermission: (type: PermissionType) => Promise<void>;
isMicrophoneAccessGranted: boolean;
isCameraAccessGranted: boolean;