import { ComponentLibraryRoutes } from './interfaces' const routes: ComponentLibraryRoutes = { component: '/api/v1/component/{name}?core={core}', list: '/api/v1/component', publish: '/api/v1/component/publish', unpublish: '/api/v1/component/unpublish/{name}/{version}', installByCore: '/api/v1/npm/getByCore/{core}', install: '/api/v1/npm/get', versions: '/api/v1/component/cobalt/{name}/versions', category: '/api/v1/component/category' } export { routes }