/** * @description Config of editor custom font family. * @property name - name of the font family displayed in {@link UETag.FONT_FAMILY_SELECT} * @property fontFamily - css declaration of the font family inserted in document html/css * @property url - URL of font file */ export interface CustomFontFamily { name: string; fontFamily: string; url: string; }