Skip to content

Commit

Permalink
Follow-up solvedac/unofficial-documentation (#20)
Browse files Browse the repository at this point in the history
Co-authored-by: RanolP <[email protected]>
  • Loading branch information
github-actions[bot] and RanolP authored Sep 13, 2021
1 parent 1e5a8b6 commit bd69246
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 143 deletions.
55 changes: 19 additions & 36 deletions dist/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ export interface Badge {
*/
displayDescription: string;
}
/**
* 클래스 치장입니다.
* @export
* @enum {string}
*/
export declare enum ClassDecoration {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
* 사용자 정보입니다.
* @export
Expand Down Expand Up @@ -174,11 +184,11 @@ export interface FullUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof FullUser
*/
classDecoration: FullUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand Down Expand Up @@ -216,15 +226,6 @@ export interface FullUser {
*/
isReverseRival?: boolean;
}
/**
* @export
* @enum {string}
*/
export declare enum FullUserClassDecorationEnum {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
*
* @export
Expand Down Expand Up @@ -960,11 +961,11 @@ export interface RankedUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof RankedUser
*/
classDecoration: RankedUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -990,15 +991,6 @@ export interface RankedUser {
*/
rank?: number;
}
/**
* @export
* @enum {string}
*/
export declare enum RankedUserClassDecorationEnum {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
*
* @export
Expand Down Expand Up @@ -1404,11 +1396,11 @@ export interface User {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof User
*/
classDecoration: UserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -1428,15 +1420,6 @@ export interface User {
*/
maxStreak: number;
}
/**
* @export
* @enum {string}
*/
export declare enum UserClassDecorationEnum {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
* 사용자의 배경 사진입니다.
* @export
Expand Down
39 changes: 10 additions & 29 deletions dist/models/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
/**
* @export
* @enum {string}
*/
export var FullUserClassDecorationEnum;
(function (FullUserClassDecorationEnum) {
FullUserClassDecorationEnum["None"] = "none";
FullUserClassDecorationEnum["Silver"] = "silver";
FullUserClassDecorationEnum["Gold"] = "gold";
})(FullUserClassDecorationEnum || (FullUserClassDecorationEnum = {}));
* 클래스 치장입니다.
* @export
* @enum {string}
*/
export var ClassDecoration;
(function (ClassDecoration) {
ClassDecoration["None"] = "none";
ClassDecoration["Silver"] = "silver";
ClassDecoration["Gold"] = "gold";
})(ClassDecoration || (ClassDecoration = {}));
/**
* 난이도 아이콘 표시 정책입니다.
* @export
Expand Down Expand Up @@ -44,16 +45,6 @@ export var OrganizationTypeEnum;
* @export
* @enum {string}
*/
export var RankedUserClassDecorationEnum;
(function (RankedUserClassDecorationEnum) {
RankedUserClassDecorationEnum["None"] = "none";
RankedUserClassDecorationEnum["Silver"] = "silver";
RankedUserClassDecorationEnum["Gold"] = "gold";
})(RankedUserClassDecorationEnum || (RankedUserClassDecorationEnum = {}));
/**
* @export
* @enum {string}
*/
export var SettingsScreenThemeEnum;
(function (SettingsScreenThemeEnum) {
SettingsScreenThemeEnum["Default"] = "default";
Expand All @@ -73,13 +64,3 @@ export var SettingsProblemSortByEnum;
SettingsProblemSortByEnum["AverageTry"] = "average_try";
SettingsProblemSortByEnum["Random"] = "random";
})(SettingsProblemSortByEnum || (SettingsProblemSortByEnum = {}));
/**
* @export
* @enum {string}
*/
export var UserClassDecorationEnum;
(function (UserClassDecorationEnum) {
UserClassDecorationEnum["None"] = "none";
UserClassDecorationEnum["Silver"] = "silver";
UserClassDecorationEnum["Gold"] = "gold";
})(UserClassDecorationEnum || (UserClassDecorationEnum = {}));
58 changes: 19 additions & 39 deletions src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ export interface Badge {
*/
displayDescription: string;
}
/**
* 클래스 치장입니다.
* @export
* @enum {string}
*/
export enum ClassDecoration {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
* 사용자 정보입니다.
* @export
Expand Down Expand Up @@ -176,11 +186,11 @@ export interface FullUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof FullUser
*/
classDecoration: FullUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand Down Expand Up @@ -218,16 +228,6 @@ export interface FullUser {
*/
isReverseRival?: boolean;
}

/**
* @export
* @enum {string}
*/
export enum FullUserClassDecorationEnum {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
*
* @export
Expand Down Expand Up @@ -964,11 +964,11 @@ export interface RankedUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof RankedUser
*/
classDecoration: RankedUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -994,16 +994,6 @@ export interface RankedUser {
*/
rank?: number;
}

/**
* @export
* @enum {string}
*/
export enum RankedUserClassDecorationEnum {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
*
* @export
Expand Down Expand Up @@ -1410,11 +1400,11 @@ export interface User {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof User
*/
classDecoration: UserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -1434,16 +1424,6 @@ export interface User {
*/
maxStreak: number;
}

/**
* @export
* @enum {string}
*/
export enum UserClassDecorationEnum {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
* 사용자의 배경 사진입니다.
* @export
Expand Down
58 changes: 19 additions & 39 deletions src/models/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ export interface Badge {
*/
displayDescription: string;
}
/**
* 클래스 치장입니다.
* @export
* @enum {string}
*/
export enum ClassDecoration {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
* 사용자 정보입니다.
* @export
Expand Down Expand Up @@ -176,11 +186,11 @@ export interface FullUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof FullUser
*/
classDecoration: FullUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand Down Expand Up @@ -218,16 +228,6 @@ export interface FullUser {
*/
isReverseRival?: boolean;
}

/**
* @export
* @enum {string}
*/
export enum FullUserClassDecorationEnum {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
*
* @export
Expand Down Expand Up @@ -964,11 +964,11 @@ export interface RankedUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof RankedUser
*/
classDecoration: RankedUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -994,16 +994,6 @@ export interface RankedUser {
*/
rank?: number;
}

/**
* @export
* @enum {string}
*/
export enum RankedUserClassDecorationEnum {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
*
* @export
Expand Down Expand Up @@ -1410,11 +1400,11 @@ export interface User {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof User
*/
classDecoration: UserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -1434,16 +1424,6 @@ export interface User {
*/
maxStreak: number;
}

/**
* @export
* @enum {string}
*/
export enum UserClassDecorationEnum {
None = 'none',
Silver = 'silver',
Gold = 'gold'
}
/**
* 사용자의 배경 사진입니다.
* @export
Expand Down

0 comments on commit bd69246

Please sign in to comment.