TypeScript/tests/projects/demo/zoo/zoo.ts
2019-08-12 16:06:09 -07:00

8 lines
145 B
TypeScript

import { Dog, createDog } from '../animals/index';
export function createZoo(): Array<Dog> {
return [
createDog()
];
}