mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-10 17:31:29 +08:00
14 lines
279 B
TypeScript
14 lines
279 B
TypeScript
export interface DatasetNavNode {
|
|
name: string;
|
|
description: string;
|
|
doc_count: number;
|
|
type: string;
|
|
doc_id?: string; // only returned by the children endpoint
|
|
has_children: boolean;
|
|
}
|
|
|
|
export interface DatasetNavList {
|
|
total: number;
|
|
items: DatasetNavNode[];
|
|
}
|