uchaindb/UClient

View on GitHub
src/ClientApp/app/models/discover.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type InfoTabType = "guide" | "faq" | "db" | "case";
export type ArticleType = { title: string, url: string, author: string, date: string };
export type ArticleList = { [index: string]: Array<ArticleType> };