UNPKG

recycling-db

Version:

Database for recycling information (icons, descriptions, examples etc)

11 lines (10 loc) 353 B
export interface Classifier { code: string; short: string; alternatives: string[]; description: string; examples: string; category: "Plastics" | "Batteries" | "Paper" | "Metals" | "Organic" | "Glass" | "Composites"; } export declare const getAll: () => Classifier[]; export declare const getByCode: (code: string) => Classifier;