12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
import { Badge } from './badge.model';
|
|
|
|
export interface Menu {
|
|
state: string;
|
|
name: string;
|
|
type: string;
|
|
icon: string;
|
|
desc?: string;
|
|
badge?: Badge[];
|
|
color?: string;
|
|
}
|