blob: ae750a3df743213d0fe1141e35374314a7ca0917 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
export function setExpandedState(expanded) {
return { type: "SET_EXPANDED_STATE", expanded };
}
export function focusItem(item) {
return { type: "SET_FOCUSED_SOURCE_ITEM", item };
}
|