Convertir to typescript
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
import { Store as PullStateStore } from 'pullstate';
|
||||
|
||||
import { lists, homeItems, notifications, settings, TodoListItem, HomeItem, NotificationItem, Settings } from '../mock';
|
||||
|
||||
type StoreProps = {
|
||||
safeAreaTop: number;
|
||||
safeAreaBottom: number;
|
||||
menuOpen: boolean;
|
||||
notificationsOpen: boolean;
|
||||
currentPage: number | null;
|
||||
homeItems: HomeItem[];
|
||||
lists: TodoListItem[];
|
||||
notifications: NotificationItem[];
|
||||
settings: Settings;
|
||||
selectedList: TodoListItem | undefined;
|
||||
}
|
||||
|
||||
const Store = new PullStateStore<StoreProps>({
|
||||
safeAreaTop: 0,
|
||||
safeAreaBottom: 0,
|
||||
menuOpen: false,
|
||||
notificationsOpen: false,
|
||||
currentPage: null,
|
||||
homeItems,
|
||||
lists,
|
||||
notifications,
|
||||
settings,
|
||||
selectedList: undefined,
|
||||
});
|
||||
|
||||
export default Store;
|
||||
Reference in New Issue
Block a user