Skip to content

Commit

Permalink
fix(be): jsdoc deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
mnseok committed Jan 26, 2025
1 parent 910553c commit 2f4ef0e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ export class ProblemResponseDto {
problemTestcase: Pick<ProblemTestcase, 'id' | 'input' | 'output'>[]
}

// Deprecated
/**
* @deprecated
*/
@Exclude()
// eslint-disable-next-line
export class _ProblemResponseDto {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ class Problem {
hasPassed: boolean | null
}

// Deprecated
/**
* @deprecated
*/
@Exclude()
// eslint-disable-next-line
export class _ProblemsResponseDto {
Expand All @@ -30,7 +32,9 @@ export class _ProblemsResponseDto {
total: number
}

// Deprecated
/**
* @deprecated
*/
@Exclude()
// eslint-disable-next-line
class _Problem {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export class RelatedProblemResponseDto {
problem: ProblemResponseDto
}

// Deprecated
/**
* @deprecated
*/
@Exclude()
// eslint-disable-next-line
export class _RelatedProblemResponseDto {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ class Problem {
submissionTime: Date | null
}

// Deprecated
/**
* @deprecated
*/
@Exclude()
// eslint-disable-next-line
export class _RelatedProblemsResponseDto {
Expand Down

0 comments on commit 2f4ef0e

Please sign in to comment.