pokemon-io-core 0.0.134 → 0.0.135
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.
- package/dist/core/stages.d.ts +2 -2
- package/package.json +1 -1
package/dist/core/stages.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ export interface StageDefinition {
|
|
|
6
6
|
id: string;
|
|
7
7
|
/** Display name for the stage */
|
|
8
8
|
label: string;
|
|
9
|
-
/**
|
|
10
|
-
|
|
9
|
+
/** Image key for loading the stage background */
|
|
10
|
+
img: string;
|
|
11
11
|
/** Alternative text for accessibility */
|
|
12
12
|
alt: string;
|
|
13
13
|
}
|