@ws-ui/shared 0.2.15 → 0.2.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/types/api.d.ts +3 -1
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -471,7 +471,9 @@ export interface IFileInfoRequest {
|
|
|
471
471
|
* Get file info response body
|
|
472
472
|
*/
|
|
473
473
|
export interface IFileInfoResponse {
|
|
474
|
-
files: IFileInfo
|
|
474
|
+
files: (IFileInfo & {
|
|
475
|
+
deleted: boolean;
|
|
476
|
+
})[];
|
|
475
477
|
}
|
|
476
478
|
export interface ILoginResponse {
|
|
477
479
|
success: boolean;
|