7 lines
164 B
TypeScript
Raw Normal View History

2019-09-27 12:53:21 +09:00
import { createAction, props } from '@ngrx/store';
export const selectedRoom = createAction(
'[Messenger::Chat] selectedRoom',
2019-10-08 11:19:47 +09:00
props<{ roomSeq: string }>()
2019-09-27 12:53:21 +09:00
);