Home
last modified time | relevance | path

Searched refs:HistoryItem (Results 1 – 5 of 5) sorted by relevance

/expo/home/types/
H A DHistoryList.ts3 import { HistoryItem } from './HistoryItem';
5 export type HistoryList = List<HistoryItem>;
H A DHistoryItem.ts3 export type HistoryItem = { alias
/expo/home/redux/
H A DHistoryReducer.ts3 import { HistoryItem as HistoryItemInput } from '../types';
15 const HistoryItem = Record<HistoryItemObject>({ constant
45 ? List(history.map((item) => new HistoryItem(item)))
H A DHistoryActions.ts3 import { HistoryItem } from '../types';
28 const historyItem: HistoryItem = {
/expo/home/storage/
H A DLocalStorage.ts6 import { HistoryItem } from '../types';
69 async function getHistoryAsync(): Promise<HistoryItem[]> {
81 async function saveHistoryAsync(history: HistoryItem[]): Promise<void> {