export interface CandyAppItem { /** * app identifier */ id: string; /** * app name */ name: string; /** * app svg url for display app icon */ svgUrl: string; /** * url for open the app */ url: string; /** * in case the navigation should be inside the app. * if not given it consider as false */ internalUrl?: boolean; /** * app short description */ shortDescription?: string; /** * has notification. in case true a red dot display in the UI * if not given it consider as false */ hasNotification?: boolean; } //# sourceMappingURL=candy-app-item.interface.d.ts.map