mirror of https://github.com/Sonarr/Sonarr
7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
|
import SortDirection from 'Helpers/Props/SortDirection';
|
||
|
|
||
|
export type SortCallback = (
|
||
|
sortKey: string,
|
||
|
sortDirection: SortDirection
|
||
|
) => void;
|