feat: update interface definitions

This commit is contained in:
Sebin Nyshkim 2023-07-18 21:48:41 +02:00
parent f147510c04
commit d196c1e680

View file

@ -5,8 +5,9 @@ interface ColorDict {
interface Kink { interface Kink {
name: string name: string
receive: boolean rating: number
give: boolean receive?: boolean
give?: boolean
} }
export type { ColorDict, Kink } export type { ColorDict, Kink }