fabric8-planner
Version:
A planner front-end for Fabric8.
11 lines (10 loc) • 361 B
TypeScript
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;