jsketcher/web/app/cad/partImport/partCatalogConfig.ts
2020-05-30 19:30:05 -07:00

16 lines
478 B
TypeScript

import {PartsCatalog} from "./partImportPlugin";
import {GitHubRepoRepository} from "../repository/GitHubRepoRepository";
import {GrCubes} from "react-icons/gr";
export const WEB_CAD_ORG_COMMONS: PartsCatalog = Object.freeze({
id: 'web-cad.org',
name: 'Commons Parts',
description: 'Public parts repository by web-cad.org',
icon: GrCubes,
repo: new GitHubRepoRepository('xibyte/web-cad', 'master'),
metadataPath: 'commons.catalog.json',
partsPath: 'parts'
});