UNPKG

archunit

Version:

ArchUnit TypeScript is an architecture testing library, to specify and assert architecture rules in your TypeScript app

11 lines 333 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DataAccess = void 0; // DataAccess layer - lowest level, no dependencies on other layers class DataAccess { getData() { return { data: 'sample data' }; } } exports.DataAccess = DataAccess; //# sourceMappingURL=data-repository.js.map