moonfire-nvr/ui/src/types.tsx

14 lines
366 B
TypeScript

// This file is part of Moonfire NVR, a security camera network video recorder.
// Copyright (C) 2021 The Moonfire NVR Authors; see AUTHORS and LICENSE.txt.
// SPDX-License-Identifier: GPL-v3.0-or-later WITH GPL-3.0-linking-exception
export interface Session {
username: string;
csrf: string;
}
export interface Camera {
uuid: string;
shortName: string;
}