8b9d0e5dba
* Tabbed fold page * Implement market, leaderboard tab views for fold. And edit dialog * Add about field to Fold
19 lines
384 B
TypeScript
19 lines
384 B
TypeScript
export type Fold = {
|
|
id: string
|
|
slug: string
|
|
name: string
|
|
about: string
|
|
curatorId: string // User id
|
|
createdTime: number
|
|
|
|
tags: string[]
|
|
|
|
contractIds: string[]
|
|
excludedContractIds: string[]
|
|
|
|
// Invariant: exactly one of the following is defined.
|
|
// Default: creatorIds: undefined, excludedCreatorIds: []
|
|
creatorIds?: string[]
|
|
excludedCreatorIds?: string[]
|
|
}
|