mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
448 B
TypeScript
12 lines
448 B
TypeScript
// Type definitions for igdb-api-node 4.0
|
|
// Project: https://github.com/igdb/igdb-api-node
|
|
// Definitions by: Susam <https://github.com/susam-projects>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import { Apicalypse, ApicalypseConfig } from 'apicalypse';
|
|
|
|
export function getTagNumber(category: number, id: number): number;
|
|
|
|
declare function igdb(apiKey?: string, opts?: ApicalypseConfig): Apicalypse;
|
|
export default igdb;
|