We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664cad5 commit 55aff75Copy full SHA for 55aff75
src/lib/types/workbook.ts
@@ -8,7 +8,7 @@ export type WorkBookBase = {
8
isOfficial: boolean;
9
isReplenished: boolean; // カリキュラムの【補充】を識別するために使用
10
workBookType: WorkBookType;
11
- urlSlug?: string; // 問題集(カリキュラムと解法別)をURLで識別するためのオプション。a-z、0-9、(-)ハイフンのみ使用可能。例: bfs、dfs、dp、union-find、2-sat。
+ urlSlug?: string | null; // 問題集(カリキュラムと解法別)をURLで識別するためのオプション。a-z、0-9、(-)ハイフンのみ使用可能。例: bfs、dfs、dp、union-find、2-sat。
12
workBookTasks: WorkBookTaskBase[];
13
};
14
0 commit comments