Add Secondary Media Info

This commit is contained in:
grafixeyehero
2024-08-22 01:01:59 +03:00
parent fabfb9b173
commit 82d70763bb
5 changed files with 218 additions and 10 deletions
+8 -2
View File
@@ -1,4 +1,10 @@
export interface MiscInfo {
text?: string | number;
interface TextAction {
url: string;
title: string;
cssClass?: string;
}
export interface MiscInfo {
text?: string | number;
textAction?: TextAction;
cssClass?: string;
}