mirror of
https://github.com/Buriburizaem0n/live2d.git
synced 2025-12-17 08:31:07 +00:00
32 lines
690 B
TypeScript
32 lines
690 B
TypeScript
declare namespace GlobalMixins
|
|
{
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
interface LoaderResource
|
|
{
|
|
/** Texture reference for loading images and other textures. */
|
|
texture?: Texture;
|
|
}
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
interface IResourceMetadata
|
|
{
|
|
|
|
}
|
|
|
|
/** @deprecated Use LoaderResource instead */
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
interface ILoaderResource
|
|
{
|
|
|
|
}
|
|
|
|
interface Application
|
|
{
|
|
loader: import('@pixi/loaders').Loader;
|
|
}
|
|
|
|
interface IApplicationOptions
|
|
{
|
|
sharedLoader?: boolean;
|
|
}
|
|
}
|