mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2025-02-09 00:18:49 +01:00
26 lines
483 B
TypeScript
26 lines
483 B
TypeScript
|
export type Category = {
|
||
|
id: string
|
||
|
slug: string
|
||
|
parentSlug: string | null
|
||
|
projectCount: number
|
||
|
description: string | null
|
||
|
title: string | null
|
||
|
}
|
||
|
|
||
|
export type Project = {
|
||
|
category_ids: string[]
|
||
|
date_added: string
|
||
|
description: string | null
|
||
|
homepage: string | null
|
||
|
id: string
|
||
|
itunes: string | null
|
||
|
lang: string | null
|
||
|
license: string
|
||
|
screenshots: string[]
|
||
|
source: string | null
|
||
|
stars: number
|
||
|
suggested_by: string
|
||
|
tags: string[]
|
||
|
title: string
|
||
|
}
|