skinview-utils
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -10,3 +10,3 @@ import { RemoteImage } from "./load-image.js"; | ||
loadSkin(empty: null): void; | ||
loadSkin<S extends TextureSource | RemoteImage>(source: S, model?: ModelType | "auto-detect", options?: T): S extends RemoteImage ? Promise<void> : void; | ||
loadSkin<S extends TextureSource | RemoteImage>(source: S, model?: ModelType | "auto-detect", options?: T): S extends TextureSource ? void : Promise<void>; | ||
} | ||
@@ -18,3 +18,3 @@ export declare abstract class CapeContainer<T> { | ||
loadCape(empty: null): void; | ||
loadCape<S extends TextureSource | RemoteImage>(source: S, options?: T): S extends RemoteImage ? Promise<void> : void; | ||
loadCape<S extends TextureSource | RemoteImage>(source: S, options?: T): S extends TextureSource ? void : Promise<void>; | ||
} |
{ | ||
"name": "skinview-utils", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "Utilities for working with Minecraft skins", | ||
@@ -5,0 +5,0 @@ "type": "module", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25490