Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
feat: add IDependencyInformationEntity.entities
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Kloubert committed Feb 7, 2024
1 parent bec7fe2 commit cc51f91
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log (@egomobile/documentation)

## 0.6.0

- add optional `entities` prop to `IDependencyInformationEntity`

## 0.5.0

- add `classDependsOn()` function
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@egomobile/documentation",
"version": "0.5.0",
"version": "0.6.0",
"description": "Tools for documenting (TypeScript) code.",
"main": "lib/index.js",
"engines": {
Expand Down
4 changes: 4 additions & 0 deletions src/types/dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ export interface IDependencyInformationEntity extends Partial<IWithEffectsProps>
* An optional value that categories this entity. Value should be handled as slug value, case-insensitive.
*/
category?: Nilable<string>;
/**
* Optional children for this entity.
*/
entities?: Nilable<DependencyInformationEntities>;
/**
* The unique key. Value should be handled case-insensitive.
*/
Expand Down

0 comments on commit cc51f91

Please sign in to comment.