BUR-58 добавлен видео-блок

This commit is contained in:
Первов Артем
2026-07-05 06:55:17 +03:00
parent 743e3c52b7
commit 6dac1ed2bd
13 changed files with 291 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
import { getJson } from '../../shared/api/http';
import { cloudApiUrl } from '../../shared/config/env';
import type { CameraResponse } from './types';
export function getCameras(edge: string): Promise<CameraResponse> {
return getJson<CameraResponse>(cloudApiUrl, '/camera', { edge });
}