UNPKG

@bengo.co/typescript-web-starter

Version:

A simple website project written in TypeScript. Use this as a starting point for your project.

18 lines (16 loc) 266 B
/** * Types related to Things. * Things are just a generic thing I made up to demo this repo. */ export interface Thing { name: string; summary: string; url: string; icon: string; uuid: string; slug: string; tag: Tag[]; } interface Tag { name: string; }