NoSubscriberBehavior
Describes the behavior of the player when an audio packet is played but there are no available voice connections to play to
Describes the behavior of the player when an audio packet is played but there are no available voice connections to play to.
NoSubscriberBehavior
Describes the behavior of the player when an audio packet is played but there are no available voice connections to play to.
toString() => stringNo Description
charAt(pos: number) => stringNo Description
charCodeAt(index: number) => numberNo Description
concat(...strings: string[]) => stringNo Description
indexOf(searchString: string, position?: number | undefined) => numberNo Description
lastIndexOf(searchString: string, position?: number | undefined) => numberNo Description
localeCompare{ (that: string): number; (that: string, locales?: string | string[] | undefined, options?: CollatorOptions | undefined): number; (that: string, locales?: LocalesArgument, options?: CollatorOptions | undefined): number; }No Description
match{ (regexp: string | RegExp): RegExpMatchArray | null; (matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | null; }No Description
replace{ (searchValue: string | RegExp, replaceValue: string): string; (searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string; (searchValue: { ...; }, replaceValue: string): string; (searchValue: { ...; }, replacer: (substring: string, ...args: any[]) => string): string; }No Description
search{ (regexp: string | RegExp): number; (searcher: { [Symbol.search](string: string): number; }): number; }No Description
slice(start?: number | undefined, end?: number | undefined) => stringNo Description
split{ (separator: string | RegExp, limit?: number | undefined): string[]; (splitter: { [Symbol.split](string: string, limit?: number | undefined): string[]; }, limit?: number | undefined): string[]; }No Description
substring(start: number, end?: number | undefined) => stringNo Description
toLowerCase() => stringNo Description
toLocaleLowerCase{ (locales?: string | string[] | undefined): string; (locales?: LocalesArgument): string; }No Description
toUpperCase() => stringNo Description
toLocaleUpperCase{ (locales?: string | string[] | undefined): string; (locales?: LocalesArgument): string; }No Description
trim() => stringNo Description
lengthnumberNo Description
substr(from: number, length?: number | undefined) => stringNo Description
valueOf() => stringNo Description
codePointAt(pos: number) => number | undefinedNo Description
includes(searchString: string, position?: number | undefined) => booleanNo Description
endsWith(searchString: string, endPosition?: number | undefined) => booleanNo Description
normalize{ (form: "NFC" | "NFD" | "NFKC" | "NFKD"): string; (form?: string | undefined): string; }No Description
repeat(count: number) => stringNo Description
startsWith(searchString: string, position?: number | undefined) => booleanNo Description
anchor(name: string) => stringNo Description
big() => stringNo Description
blink() => stringNo Description
bold() => stringNo Description
fixed() => stringNo Description
fontcolor(color: string) => stringNo Description
fontsize{ (size: number): string; (size: string): string; }No Description
italics() => stringNo Description
link(url: string) => stringNo Description
small() => stringNo Description
strike() => stringNo Description
sub() => stringNo Description
sup() => stringNo Description
padStart(maxLength: number, fillString?: string | undefined) => stringNo Description
padEnd(maxLength: number, fillString?: string | undefined) => stringNo Description
trimEnd() => stringNo Description
trimStart() => stringNo Description
trimLeft() => stringNo Description
trimRight() => stringNo Description
matchAll(regexp: RegExp) => RegExpStringIterator<RegExpExecArray>No Description
__@iterator@684() => StringIterator<string>No Description
at(index: number) => string | undefinedTakes an integer value and returns the item at that index, allowing for positive and negative integers. Negative integers count back from the last item in the array.