13 lines
365 B
Plaintext
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;
|
|
}
|