live2d-widgets
Version:
Live2D widget for web pages
22 lines (21 loc) • 411 B
TypeScript
/**
* @file Define the type of the global window object.
* @module types/window
*/
interface Window {
/**
* Asteroids game class.
* @type {any}
*/
Asteroids: any;
/**
* Asteroids game player array.
* @type {any[]}
*/
ASTEROIDSPLAYERS: any[];
/**
* Function to initialize the Live2D widget.
* @type {(config: Config) => void}
*/
initWidget: (config: Config) => void;
}