File size: 291 Bytes
8c06509 40a88fa 2d45930 40a88fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { IPaginationRequestBody } from './base';
export interface IFileListRequestBody extends IPaginationRequestBody {
parent_id?: string; // folder id
}
interface BaseRequestBody {
parentId: string;
}
export interface IConnectRequestBody {
fileIds: string[];
kbIds: string[];
}
|