mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-06 13:35:44 +01:00
10 lines
153 B
TypeScript
10 lines
153 B
TypeScript
|
|
import { Link } from '@scm-manager/ui-types';
|
||
|
|
|
||
|
|
export type InfoItem = {
|
||
|
|
title: string;
|
||
|
|
summary: string;
|
||
|
|
_links: {
|
||
|
|
[key: string]: Link;
|
||
|
|
};
|
||
|
|
};
|