bitwarden-estensione-browser/apps/web/src/app/reports/models/report-entry.ts

10 lines
181 B
TypeScript

import { ReportVariant } from "./report-variant";
export type ReportEntry = {
title: string;
description: string;
route: string;
icon: string;
variant: ReportVariant;
};