8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import { SubscriptionType } from '@ghostfolio/common/types/subscription-type.type';
|
|
|
|
export interface SystemMessage {
|
|
message: string;
|
|
routerLink?: string[];
|
|
targetGroups: SubscriptionType[];
|
|
}
|