Files
SCM-Manager/scm-ui/ui-webapp/src/components/InfoItem.ts

10 lines
153 B
TypeScript
Raw Normal View History

import { Link } from '@scm-manager/ui-types';
export type InfoItem = {
title: string;
summary: string;
_links: {
[key: string]: Link;
};
};