UNPKG

uspto-patents-view-api

Version:

An api wrapper for the patent view api run by the uspto

10 lines (8 loc) 209 B
import { Investor } from './investor.model'; export interface Patent { patent_number: string; patent_date: string; patent_title: string; patent_abstract?: string; inventors?: Investor[]; }