Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

get-icon.ts 179B

12345
  1. import { MARKETPLACE_API_PREFIX } from '@/config'
  2. export const getIconFromMarketPlace = (plugin_id: string) => {
  3. return `${MARKETPLACE_API_PREFIX}/plugins/${plugin_id}/icon`
  4. }