mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 19:18:07 +01:00
06b68490d1
* Enable ESLint recommended ruleset * Disable failing ESLint recommended rules * Remove rules shadowed by eslint:recommended
17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
export const HEIGHT_CACHE_SET = 'HEIGHT_CACHE_SET';
|
|
export const HEIGHT_CACHE_CLEAR = 'HEIGHT_CACHE_CLEAR';
|
|
|
|
export function setHeight (key, id, height) {
|
|
return {
|
|
type: HEIGHT_CACHE_SET,
|
|
key,
|
|
id,
|
|
height,
|
|
};
|
|
}
|
|
|
|
export function clearHeight () {
|
|
return {
|
|
type: HEIGHT_CACHE_CLEAR,
|
|
};
|
|
}
|