react-ui-mat
Version:
- ANIMATE - BADGES ( success, danger, info, light, primary, green ) - BEHAVIOR - BUTTONS - CHECKBOX - COLLAPSE - CONTEXT PANEL - DATE PICKER - DATEPICKER - DATEUTIL - DIVIDER - DRAGABLE MODAL - INCORRECT_ENTRY - INPUT - INPUT_FIELDS - MULTISELECT - MUPLAY
35 lines (34 loc) • 730 B
TypeScript
export declare enum SORT_DIRECTION {
asc = "asc",
desc = "desc"
}
export type SortingDirections = "asc" | "desc";
export interface SortDirectionEvent {
name?: string;
direction?: "asc" | "desc" | SortingDirections | any;
}
export interface IMTPoint {
id: string;
lat: number;
lng: number;
time: number | string;
data?: any;
}
export interface IMTMovePoint {
id: string;
lat: number;
lng: number;
time: number | string;
angle: number;
data?: any;
from?: IMTPoint;
distance?: number;
}
export interface IMTMoveValue {
from?: IMTMovePoint;
point: IMTMovePoint;
adds: IMTMovePoint[];
rms: IMTMovePoint[];
addIds: string[];
rmIds: string[];
}