11 lines
234 B
TypeScript
Raw Normal View History

2019-09-18 15:02:21 +09:00
import { Selector } from '@ngrx/store';
// tslint:disable-next-line: no-empty-interface
export interface State {}
export const initialState: State = {};
export function selectors<S>(selector: Selector<any, State>) {
return {};
}