songsterr-api-node
Version:
npm module for Songsterr's API
30 lines (29 loc) • 627 B
TypeScript
export interface InewTuning {
name: string;
notes: string;
octaves: string;
}
interface Inames {
[key: string]: string;
}
export interface Iindexes {
[key: number]: Inames;
}
interface Itracks {
difficulty?: string;
difficultyV3?: string;
difficultyVersion?: number;
instrumentId: number;
tuning?: unknown;
views?: number;
}
interface IsongsterrObject {
artist: string;
artistId: number;
defaultTrack: number;
songId: number;
title: string;
tracks: Itracks[];
}
export declare type IsongsterrTabs = IsongsterrObject[];
export {};