Skip to content

Commit 55aff75

Browse files
committed
✨ Add url slug to workbook (#2020)
1 parent 664cad5 commit 55aff75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/types/workbook.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export type WorkBookBase = {
88
isOfficial: boolean;
99
isReplenished: boolean; // カリキュラムの【補充】を識別するために使用
1010
workBookType: WorkBookType;
11-
urlSlug?: string; // 問題集(カリキュラムと解法別)をURLで識別するためのオプション。a-z、0-9、(-)ハイフンのみ使用可能。例: bfs、dfs、dp、union-find、2-sat。
11+
urlSlug?: string | null; // 問題集(カリキュラムと解法別)をURLで識別するためのオプション。a-z、0-9、(-)ハイフンのみ使用可能。例: bfs、dfs、dp、union-find、2-sat。
1212
workBookTasks: WorkBookTaskBase[];
1313
};
1414

0 commit comments

Comments
 (0)