src/common/store/message-state.ts
Defines the part of the state assigned to the StarkMessagePaneModule
Properties |
messages |
messages:
|
Type : StarkMessageCollection
|
State corresponding to the StarkMessagePaneModule |
import { StarkMessageCollection } from "../message";
/**
* Defines the part of the state assigned to the {@link StarkMessagePaneModule}
*/
export interface StarkMessageState {
/**
* State corresponding to the {@link StarkMessagePaneModule}
*/
messages: StarkMessageCollection;
}