constants.js 158 字节
Newer Older
1 2 3 4 5 6 7 8
export const ANY_AUTHOR = 'Any';

export const DEBOUNCE_DELAY = 200;

export const SortDirection = {
  descending: 'descending',
  ascending: 'ascending',
};