<details> <summary>Store</summary> ```ts export interface BooksState extends EntityState<IBook> {} export const initialState: BooksState = bookAdapter.getInitialState(); ```
Store