This commit is contained in:
Akko
2025-08-04 18:57:35 +02:00
parent 8cf6e78a79
commit 9495868c2e
5030 changed files with 518594 additions and 17609 deletions

View File

@@ -0,0 +1,17 @@
import { type Adapter } from '../environment/adapter';
/**
* This is an implementation of the {@link environment.Adapter} interface.
* It can be used to make Pixi work in the browser.
* @memberof environment
* @property {Function} createCanvas - Creates a canvas element of the given size.
* This canvas is created using the browser's native canvas element.
* @property {Function} getCanvasRenderingContext2D - Returns a 2D rendering context.
* @property {Function} getWebGLRenderingContext - Returns a WebGL rendering context.
* @property {Function} getNavigator - Returns browsers window.navigator
* @property {Function} getBaseUrl - Returns the current base URL for browser environments this is either
* the document.baseURI or window.location.href
* @property {Function} getFontFaceSet - Return the font face set if available
* @property {Function} fetch - Returns a Response object that has been fetched from the given URL.
* @property {Function} parseXML - Returns Document object that has been parsed from the given XML string.
*/
export declare const BrowserAdapter: Adapter;