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.
22 lines
398 B
22 lines
398 B
import { IsBoolean, IsInt, Length } from "class-validator";
|
|
|
|
import type { Protobuf } from "@meshtastic/meshtasticjs";
|
|
|
|
export class ChannelSettingsValidation implements Protobuf.ChannelSettings {
|
|
@IsInt()
|
|
channelNum: number;
|
|
|
|
psk: Uint8Array;
|
|
|
|
@Length(1, 30)
|
|
name: string;
|
|
|
|
@IsInt()
|
|
id: number;
|
|
|
|
@IsBoolean()
|
|
uplinkEnabled: boolean;
|
|
|
|
@IsBoolean()
|
|
downlinkEnabled: boolean;
|
|
}
|
|
|