12 lines
164 B
TypeScript
12 lines
164 B
TypeScript
interface ColorDict {
|
|
name: string;
|
|
value: string;
|
|
}
|
|
|
|
interface Kink {
|
|
name: string;
|
|
receive: boolean;
|
|
give: boolean;
|
|
}
|
|
|
|
export type { ColorDict, Kink };
|