Feat: Add Dataset page #3221 (#3721)

### What problem does this PR solve?

Feat: Add Dataset page #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-11-28 18:44:36 +08:00
committed by GitHub
parent cdae8d28fe
commit 4e8e4fe53f
8 changed files with 351 additions and 25 deletions

View File

@ -11,7 +11,7 @@ export interface IDocumentInfo {
name: string;
parser_config: IParserConfig;
parser_id: string;
process_begin_at: null;
process_begin_at?: string;
process_duation: number;
progress: number;
progress_msg: string;
@ -27,11 +27,11 @@ export interface IDocumentInfo {
}
export interface IParserConfig {
delimiter: string;
html4excel: boolean;
layout_recognize: boolean;
delimiter?: string;
html4excel?: boolean;
layout_recognize?: boolean;
pages: any[];
raptor: Raptor;
raptor?: Raptor;
}
interface Raptor {