UNPKG

@aurigma/design-atoms-interfaces

Version:

10 lines (9 loc) 245 B
import { IQueryOptions } from "../../Types"; export interface IRotateItemsCommandArgs<TItem, TPointF> { items?: TItem[]; query?: string; queryOptions?: IQueryOptions; angle: number; origin: TPointF; finished?: boolean; }