mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
export type Action = UpdateNavIndexAction;
|
|
|
|
// this action is not used yet
|
|
// kind of just a placeholder, will be need for dynamic pages
|
|
// like datasource edit, teams edit page
|
|
|
|
export interface UpdateNavIndexAction {
|
|
type: 'UPDATE_NAV_INDEX';
|
|
}
|
|
|
|
export const updateNavIndex = (): UpdateNavIndexAction => ({
|
|
type: 'UPDATE_NAV_INDEX',
|
|
});
|