• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import { Dog, createDog } from '../animals/index';
2
3export function createZoo(): Array<Dog> {
4    return [
5        createDog()
6    ];
7}
8
9