UNPKG

@log4brains/core

Version:

Log4brains architecture knowledge base core API

15 lines 457 B
import { Entity } from "@src/domain"; import { FilesystemPath } from "./FilesystemPath"; import { PackageRef } from "./PackageRef"; declare type Props = { ref: PackageRef; path: FilesystemPath; adrFolderPath: FilesystemPath; }; export declare class Package extends Entity<Props> { get ref(): PackageRef; get path(): FilesystemPath; get adrFolderPath(): FilesystemPath; } export {}; //# sourceMappingURL=Package.d.ts.map