UNPKG

pencil.js

Version:

Nice modular interactive 2D drawing library.

29 lines (28 loc) 548 B
/** * @module NetworkEvent */ /** * Network event class * @class * @extends {module:BaseEvent} */ export default class NetworkEvent { /** * @typedef {Object} NetworkEvents * @prop {String} ready - Content has been loaded * @prop {String} error - Content load has fail */ /** * @type {NetworkEvents} */ static get events(): { /** * - Content has been loaded */ ready: string; /** * - Content load has fail */ error: string; }; }