frontend/.pnpm-store/v3/files/e5/72ca0f3503631860b359dc7cf504bc16ce3fb7d78c62d124e7a4662d72f515e53c681fa39f436bf9143958f72436829edf1ef0e1b5eea83b6f3e6d18a6b7a5

13 lines
365 B
Plaintext

import type Context from '../Context';
export default class Rows {
private rawRows;
private triggerChange;
private sorted;
constructor(context: Context);
sort(orderBy: Function | string): void;
sortAsc(orderBy: Function | string): void;
sortDesc(orderBy: Function | string): void;
private parse;
private getSorted;
}