Skip to content

Commit 73f484c

Browse files
committed
chore: update description
1 parent e4a1754 commit 73f484c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<a href="https://github.com/un-oj/core"><img src="https://img.shields.io/github/stars/un-oj/core"></a>
1010
</p>
1111

12-
Unified Online Judge information collector, tree-shakable and extensible.
12+
Unified information collector of online competitive programming platforms.
1313

1414
## Usage
1515

src/platforms/atcoder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*/
55

66
import type { CheerioAPI } from 'cheerio';
7-
import type { PlatformOptions, ProblemIOSample } from '../platform';
8-
import type { Problem as BaseProblem } from '../problem';
7+
import type { PlatformOptions } from '../platform';
8+
import type { Problem as BaseProblem, ProblemIOSample } from '../problem';
99
import { load } from 'cheerio';
1010
import { FetchError } from 'ofetch';
1111
import { NotFoundError, Platform } from '../platform';

src/platforms/codeforces.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* @module
44
*/
55

6-
import type { PlatformOptions, ProblemIOSample } from '../platform';
7-
import type { Problem as BaseProblem } from '../problem';
6+
import type { PlatformOptions } from '../platform';
7+
import type { Problem as BaseProblem, ProblemIOSample } from '../problem';
88
import { load } from 'cheerio';
99
import { NotFoundError, Platform } from '../platform';
1010
import { parseMemory, parseTime } from '../utils';

src/platforms/hydro.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* @module
44
*/
55

6-
import type { PlatformOptions, ProblemIOSample } from '../platform';
7-
import type { Problem as BaseProblem } from '../problem';
6+
import type { PlatformOptions } from '../platform';
7+
import type { Problem as BaseProblem, ProblemIOSample } from '../problem';
88
import { FetchError } from 'ofetch';
99
import { NotFoundError, Platform, UnexpectedResponseError } from '../platform';
1010
import { addHeaders, getFirstKey, UnOJError } from '../utils';

src/platforms/leetcode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* @module
44
*/
55

6-
import type { PlatformOptions, ProblemIOSample } from '../platform';
7-
import type { Problem as BaseProblem } from '../problem';
6+
import type { PlatformOptions } from '../platform';
7+
import type { Problem as BaseProblem, ProblemIOSample } from '../problem';
88
import { load } from 'cheerio';
99
import { FetchError } from 'ofetch';
1010
import { NotFoundError, Platform, UnexpectedResponseError } from '../platform';

0 commit comments

Comments
 (0)