fix and new logo
This commit is contained in:
@@ -3,6 +3,7 @@ import { useCallback, useMemo } from 'react';
|
||||
type Identifier = string | number;
|
||||
|
||||
type DocumentEntry = { id?: Identifier } & Record<string, unknown>;
|
||||
type InspectTarget = DocumentEntry | Identifier | null | undefined;
|
||||
|
||||
type WorkspaceViewMode = 'desk' | 'grid' | 'list' | string;
|
||||
|
||||
@@ -24,7 +25,7 @@ interface UseDeskWorkspacePropsArgs {
|
||||
handleDocumentsViewModeChange?: (mode: WorkspaceViewMode) => void;
|
||||
handleDeskExit?: () => void;
|
||||
refreshCurrentFolder?: () => Promise<void> | void;
|
||||
inspectDocument?: (doc: DocumentEntry) => void;
|
||||
inspectDocument?: (doc: InspectTarget) => void;
|
||||
handleEntryPointerCore?: (...args: unknown[]) => void;
|
||||
promoteSelectionOrder?: (...args: unknown[]) => void;
|
||||
currentTenantId?: Identifier | null;
|
||||
|
||||
Reference in New Issue
Block a user