mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
// Detectors Section Component
|
|
// Global detectors configuration settings
|
|
|
|
import { createConfigSection } from "./BaseSection";
|
|
import { getSectionConfig } from "../sectionConfigs";
|
|
|
|
export const DetectorsSection = createConfigSection({
|
|
sectionPath: "detectors",
|
|
defaultConfig: getSectionConfig("detectors", "global"),
|
|
});
|
|
|
|
export default DetectorsSection;
|