@log4brains/core
Version:
Log4brains architecture knowledge base core API
16 lines • 433 B
TypeScript
import { ValueObject } from "@src/domain";
import type { Adr } from "./Adr";
declare type Props = {
from: Adr;
relation: string;
to: Adr;
};
export declare class AdrRelation extends ValueObject<Props> {
constructor(from: Adr, relation: string, to: Adr);
get from(): Adr;
get relation(): string;
get to(): Adr;
toMarkdown(): string;
}
export {};
//# sourceMappingURL=AdrRelation.d.ts.map