11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
export interface FileListQueryType {
|
|
userID: string;
|
|
search: string | undefined;
|
|
parent: string;
|
|
startAtDate: string | undefined;
|
|
startAtName: string | undefined;
|
|
trashMode: boolean;
|
|
mediaMode: boolean;
|
|
sortBy: string;
|
|
}
|