UNPKG

ts-bdd

Version:

A TypeScript BDD testing framework with typed shared examples and state management

13 lines 326 B
import { Repository } from './repo.js'; export class Service { static async findAll() { return Repository.findAll(); } static async findById(id) { return Repository.findById(id); } static async create(name) { return Repository.create(name); } } //# sourceMappingURL=index.js.map