Extra contents beyond WaniKani
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
239 B

import { WaniKani } from '@/wanikani';
async function main() {
const wk = new WaniKani();
wk.$axios
.get('/level_progressions')
.then((r) => console.dir(r.data, { depth: null }));
}
if (require.main === module) {
main();
}