Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

history.ts 228B

1234567891011
  1. export type History = {
  2. id: string
  3. source: string
  4. target: string
  5. }
  6. export type HistoryResponse = {
  7. histories: History[]
  8. }
  9. export const fetchHistories = (url: string) =>
  10. fetch(url).then<HistoryResponse>(r => r.json())