UNPKG

fatina

Version:

Lighweight Tweening Library for web / games

11 lines (10 loc) 198 B
/** * Interface used to extend functionalities through plugin * * @export * @interface IPlugin */ export interface IPlugin { readonly name: string; init(fatina: any): void; }