lml-main
Version:
This is now a mono repository published into many standalone packages.
12 lines (11 loc) • 428 B
TypeScript
export declare const SHOW_TRAFFIC = "SHOW_TRAFFIC";
export declare const HIDE_TRAFFIC = "HIDE_TRAFFIC";
export interface ShowTrafficAction {
type: 'SHOW_TRAFFIC';
}
export interface HideTrafficAction {
type: 'HIDE_TRAFFIC';
}
export declare type MapFlagsAction = ShowTrafficAction | HideTrafficAction;
export declare const showTraffic: () => ShowTrafficAction;
export declare const hideTraffic: () => HideTrafficAction;