Skip to content

Instantly share code, notes, and snippets.

View clufs's full-sized avatar
🎯
Focusing

clufs

🎯
Focusing
View GitHub Profile
@Klerith
Klerith / seed.ts
Created July 12, 2022 18:55
Nest-Teslo Seed
interface SeedProduct {
description: string;
images: string[];
stock: number;
price: number;
sizes: ValidSizes[];
slug: string;
tags: string[];
title: string;
type: ValidTypes;