@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
28 lines (27 loc) • 636 B
TypeScript
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
export declare enum TasksTableSorting {
/** Without sorting */
None = 0,
/** Send data */
SendDate = 1,
/** Due date */
DueDate = 2,
/** Name */
Name = 3,
/** Author */
Author = 4,
/** State */
State = 5,
/** Current performer */
CurrentPerformer = 6,
/** Kind */
Kind = 7
}
export declare enum TasksTableSortingDirection {
Ascending = 0,
Descending = 1
}
export interface ITasksTableSorting {
type: GenModels.TaskColumnType;
direction: TasksTableSortingDirection;
}