mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-31 14:48:49 +01:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
|
|
import { Observable } from 'rxjs';
|
||
|
|
|
||
|
|
export interface Camera {
|
||
|
|
title: string;
|
||
|
|
source: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export abstract class SecurityCamerasData {
|
||
|
|
abstract getCamerasData(): Observable<Camera[]>;
|
||
|
|
}
|