UNPKG

juno-console

Version:

Juno is a clean and lightweight 2D game framework written in TypeScript for making tiny HTML5 Games.

12 lines (10 loc) 315 B
/** * @author Digitsensitive <digit.sensitivee@gmail.com> * @copyright 2018 Digitsensitive * @description Juno: State Interface * @license {@link https://github.com/digitsensitive/juno-console/blob/master/license.txt|MIT License} */ export interface IState { name: string; instance: any; }