export type GUID = string; export type ExcelBinary = string; export interface PageInfo { page: number; pageSize: number; } export interface ItemsPage2 { items: IItem[]; total: number; pagedParams: PagedParams; } export interface Sorting { field: TSortField; isAsc: boolean; } export interface Dict { [id: string]: T; } export type PartialRecord = { [P in K]?: T; }; export interface PagedParams { pageInfo: PageInfo; sorting: Sorting; searchParams: TSearchParams; }