TL errors information

interface TlErrors {
    base: Record<string, number>;
    botOnly: Record<string, 1>;
    errors: Record<string, TlError>;
    throws: Record<string, string[]>;
    userOnly: Record<string, 1>;
}

Properties

base: Record<string, number>

Base errors (map of error names to error code, e.g. BAD_REQUEST: 400)

botOnly: Record<string, 1>

Index of the methods only usable by bots

errors: Record<string, TlError>

Index of errors by name

throws: Record<string, string[]>

Object describing which errors may be thrown by which methods

Mapping from method name to array of error names

userOnly: Record<string, 1>

Index of the methods only usable by user