Files
ui/src/entities/camera/api.ts
2026-07-05 06:55:17 +03:00

8 lines
290 B
TypeScript

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 });
}