UNPKG

@canguro/horse

Version:

Deliver your data to wherever you wish, when you wish and how you wish.

10 lines (6 loc) 262 B
import { HorseDestination } from '../definitions/HorseDestination'; const destinations: HorseDestination[] = []; export const add = (destination: HorseDestination) => { destinations.push(destination); }; export const getAll = () => destinations;