You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
436 B
20 lines
436 B
import type { Message } from "@bufbuild/protobuf";
|
|
import type { Protobuf } from "@meshtastic/js";
|
|
import { IsBoolean, IsInt } from "class-validator";
|
|
|
|
export class PaxcounterValidation
|
|
implements
|
|
Omit<Protobuf.ModuleConfig.ModuleConfig_PaxcounterConfig, keyof Message>
|
|
{
|
|
@IsBoolean()
|
|
enabled: boolean;
|
|
|
|
@IsInt()
|
|
paxcounterUpdateInterval: number;
|
|
|
|
@IsInt()
|
|
bleThreshold: number;
|
|
|
|
@IsInt()
|
|
wifiThreshold: number;
|
|
}
|
|
|