mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 18:43:09 +03:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import type { SectionConfigOverrides } from "./types";
|
|
|
|
const classification: SectionConfigOverrides = {
|
|
base: {
|
|
hiddenFields: ["custom"],
|
|
advancedFields: [],
|
|
},
|
|
};
|
|
|
|
export default classification;
|