(history) add history list of last visited repos

This commit is contained in:
Julien Calixte
2021-12-12 00:10:38 +01:00
parent 070acfd3ca
commit a22218b8b2
5 changed files with 72 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import { DataType } from '@/data/DataType.enum'
import { Model } from '@/data/models/Model'
export interface History extends Model<DataType.History> {
repos: ReadonlyArray<{
user: string
repo: string
}>
}