13 lines
177 B
TypeScript
13 lines
177 B
TypeScript
interface ColorDict {
|
|
name: string
|
|
value: string
|
|
}
|
|
|
|
interface Kink {
|
|
name: string
|
|
rating: number
|
|
receive?: boolean
|
|
give?: boolean
|
|
}
|
|
|
|
export type { ColorDict, Kink }
|