pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
21 lines (20 loc) • 602 B
TypeScript
import EventEmitter from 'eventemitter3';
/**
* Regexp for data URI.
* Based on: {@link https://github.com/ragingwind/data-uri-regex}
* @type {RegExp}
* @default /(?:^data:image\/([\w+]+);(?:[\w=]+|charset=[\w-]+)?(?:;base64)?,)/i
* @example
* import { DATA_URI } from 'pixi.js';
*
* DATA_URI.test('data:image/png;base64,foobar'); // => true
* @category utils
* @advanced
*/
export declare const DATA_URI: RegExp;
export { EventEmitter };
/**
* The current version of PixiJS. This is automatically replaced by the build process.
* @internal
*/
export declare const VERSION = "$_VERSION";