galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
23 lines • 560 B
TypeScript
export interface ConfigInterface {
'riot-api': {
key?: string;
};
'rate-limit': {
type: 'bottleneck' | 'null';
cache: {
type: 'redis' | 'internal';
uri?: string;
'key-id': string;
};
options: {
intervals: {
[key: number]: number;
};
'max-concurrent': number | null;
'min-time': number;
'retry-count-after-429': number;
};
};
debug: string[];
}
//# sourceMappingURL=config.d.ts.map