omniarena-types 1.30.0 → 1.32.0
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/index.d.ts +15 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -138,7 +138,7 @@ export type SkillSkin = {
|
|
|
138
138
|
name: string;
|
|
139
139
|
image: string;
|
|
140
140
|
};
|
|
141
|
-
type PronounSkin = {
|
|
141
|
+
export type PronounSkin = {
|
|
142
142
|
id: number;
|
|
143
143
|
subject: string;
|
|
144
144
|
object: string;
|
|
@@ -163,4 +163,17 @@ export type GameCharacter = CharacterSkin & {
|
|
|
163
163
|
playable: boolean;
|
|
164
164
|
skills: GameSkill[];
|
|
165
165
|
};
|
|
166
|
-
export {
|
|
166
|
+
export type PostDto = {
|
|
167
|
+
id: string;
|
|
168
|
+
type: string;
|
|
169
|
+
title: string;
|
|
170
|
+
content: string;
|
|
171
|
+
createdAt: Date;
|
|
172
|
+
creator: {
|
|
173
|
+
id: string;
|
|
174
|
+
username: string;
|
|
175
|
+
avatarUrl: string;
|
|
176
|
+
};
|
|
177
|
+
likes: number;
|
|
178
|
+
dislikes: number;
|
|
179
|
+
};
|