UNPKG

twinoid-goals

Version:

A simple, straight-forward package containing everything you need to handle Twinoid goals.

36 lines (23 loc) 604 B
# Twinoid Goals A simple, straight-forward package containing everything you need to handle Twinoid goals. ![](https://i.imgur.com/gL6Od52.png) ## Installation ``` npm i twinoid-goals ``` ## Usage ```ts import { alphabounce } from 'twinoid-goals'; const unlockedGoals = alphabounce.getUnlocked('planets', 6); ``` ## More examples ### Get all goals for a specific game ```ts import { alphabounce } from 'twinoid-goals'; const { goals } = alphabounce; ``` ### Get all unlockable goals for an ID ```ts import { alphabounce } from 'twinoid-goals'; const planets = alphabounce.get('planets'); ```