UNPKG

@lifeart/gxt

Version:

<img align="right" width="95" height="95" alt="Philosopher’s stone, logo of PostCSS" src="./public/logo.png">

11 lines (10 loc) • 284 B
export interface Item { id: number; label: string; } export declare function buildData(count?: number): { id: number; label: string; }[]; export declare const swapRows: (data: Item[]) => Item[]; export declare const updateData: (data: Item[], mod?: number) => Item[];