cleanup and fix fading

This commit is contained in:
Bastian Ike
2020-07-17 09:28:02 +02:00
committed by Bastian
parent ed2a4241b8
commit 40e7dd709a
13 changed files with 538 additions and 1295 deletions

View File

@@ -1,18 +1,20 @@
import { ring } from "./config"
import { Ring } from "./config"
export type ItemAttributes = {
name: string
ring: ring
ring: Ring
quadrant: string
title: string
featured: boolean
}
export type FlagType = 'new' | 'changed' | 'default'
export type Item = ItemAttributes & {
featured: boolean
body: string
info: string
flag: 'new' | 'changed' | 'default'
flag: FlagType
revisions: Revision[]
}