You are reading the documentation for the next version of discord.js. Documentation for v13/v14+ has been moved to old.discordjs.dev
Abstract

ApplicationCommandNumericOptionMinMaxValueMixin

export declare abstract class ApplicationCommandNumericOptionMinMaxValueMixin
export declare abstract class ApplicationCommandNumericOptionMinMaxValueMixin
This mixin holds minimum and maximum symbols used for options.
Readonly
max_value?:number
The maximum value of this option.
Readonly
min_value?:number
The minimum value of this option.
Abstract
setMaxValue(max):this
Sets the maximum number value of this option.
NameTypeOptionalDescription
maxnumberNoThe maximum value this option can be
Abstract
setMinValue(min):this
Sets the minimum number value of this option.
NameTypeOptionalDescription
minnumberNoThe minimum value this option can be