mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-15 05:12:47 +00:00
17 lines
254 B
TypeScript
17 lines
254 B
TypeScript
import { hiscores, ge } from 'osrs-json-api';
|
|
|
|
hiscores.getPlayer('b0aty').then(
|
|
(res: hiscores.Player): void => {
|
|
}
|
|
);
|
|
|
|
ge.getItem(449).then(
|
|
(res: ge.Item): void => {
|
|
}
|
|
);
|
|
|
|
ge.getGraph(449).then(
|
|
(res: ge.Graph): void => {
|
|
}
|
|
);
|