Started to work the shortcodes

This commit is contained in:
cdricms
2025-01-24 18:07:04 +01:00
parent 78ce2b533b
commit f1a49eea83
19 changed files with 713 additions and 38 deletions

View File

@@ -0,0 +1,10 @@
import Media from "./Media";
export default interface IShortcode {
id: number;
code: string;
type: string;
value?: string;
media_id?: string;
media?: Media;
}