feat: add typed props exports

This commit is contained in:
Sebin Nyshkim 2023-01-20 00:32:00 +01:00
parent 579e57f631
commit baf6161d95

12
src/interfaces.ts Normal file
View file

@ -0,0 +1,12 @@
interface ColorDict {
name: string;
value: string;
}
interface Kink {
name: string;
receive: boolean;
give: boolean;
}
export type { ColorDict, Kink };