@dchighs/dc-assets 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,12 @@
1
- import { DragonSpriteQuality } from "@dchighs/dc-core";
1
+ import { ChestSpriteQuality } from "@dchighs/dc-core";
2
2
  import { StaticFileDownloader } from "./static-file-downloader";
3
3
  export type ChestSpriteDownloaderOptions = {
4
- imageQuality: DragonSpriteQuality;
4
+ imageQuality: ChestSpriteQuality;
5
5
  imageName: string;
6
6
  };
7
7
  export declare class ChestSpriteDownloader extends StaticFileDownloader {
8
8
  readonly url: string;
9
- readonly imageQuality: DragonSpriteQuality;
9
+ readonly imageQuality: ChestSpriteQuality;
10
10
  readonly imageName: string;
11
11
  constructor({ imageQuality, imageName }: ChestSpriteDownloaderOptions);
12
12
  download(filePath: string): Promise<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dchighs/dc-assets",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Library focused on downloading static files from the Dragon City server.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",