vinmonopolet-ts
Version:
Extracts information on products, categories and stores from Vinmonopolet
17 lines (16 loc) • 381 B
TypeScript
interface IFoodPairingMap {
[key: string]: FoodPairing;
}
declare class FoodPairing {
code: string;
identifier: string;
name: string;
byName: FoodPairing | null;
constructor({ code, identifier, name }: {
code: any;
identifier: any;
name: any;
});
static byName: IFoodPairingMap;
}
export default FoodPairing;