ResolvedRC

Signature

export type ResolvedRC = Readonly<Omit<RC, 'locations' | 'debug'> & {    locations: Readonly<MakeRequired<RC['locations'], 'base'>>;    debug: boolean;    intents: number;}>;

Private types

RCInterface
interface RC extends ExtendedRC {    debug?: boolean;    locations: RCLocations;    token: string;    intents?: number;    applicationId?: string;    port?: number;    publicKey?: string;}
RCLocationsInterface
interface RCLocations extends ExtendedRCLocations {    base: string;    commands?: string;    langs?: string;    events?: string;    components?: string;}

Members

This export does not declare public properties or methods in the generated declaration file.