UNPKG

fabric8-planner

Version:
11 lines (10 loc) 361 B
import { Action } from '@ngrx/store'; export declare const LOCK_BOARD = "[board-ui] Lock"; export declare const UNLOCK_BOARD = "[board-ui] Unlock"; export declare class LockBoard implements Action { readonly type: string; } export declare class UnlockBoard implements Action { readonly type: string; } export declare type All = LockBoard | UnlockBoard;