Browse Source

book?: number;

visuddhinanda 2 years ago
parent
commit
4f44854b6d
1 changed files with 5 additions and 5 deletions
  1. 5 5
      dashboard/src/components/api/Corpus.ts

+ 5 - 5
dashboard/src/components/api/Corpus.ts

@@ -249,11 +249,11 @@ export interface IChapterLangListResponse {
 }
 }
 
 
 export interface ISentencePrRequest {
 export interface ISentencePrRequest {
-  book: number;
-  para: number;
-  begin: number;
-  end: number;
-  channel: string;
+  book?: number;
+  para?: number;
+  begin?: number;
+  end?: number;
+  channel?: string;
   text: string;
   text: string;
 }
 }
 export interface ISentencePrResponseData {
 export interface ISentencePrResponseData {