Skip to content

Commit

Permalink
feat(learn-link-type): include description property (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaslennan committed Sep 9, 2020
1 parent b128034 commit f30aafe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/assets/assets.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ import { Observable, of } from 'rxjs';

import { IMenuItem } from '@covalent/core/dynamic-menu';

export interface ILearnLinkItem extends IMenuItem {
description?: string;
}

export interface IHelpAssets {
[name: string]: {
links: IMenuItem[];
learn?: IMenuItem[];
learn?: ILearnLinkItem[];
};
}

Expand Down

0 comments on commit f30aafe

Please sign in to comment.