feat: add typed props exports
This commit is contained in:
parent
579e57f631
commit
baf6161d95
1 changed files with 12 additions and 0 deletions
12
src/interfaces.ts
Normal file
12
src/interfaces.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
interface ColorDict {
|
||||
name: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
interface Kink {
|
||||
name: string;
|
||||
receive: boolean;
|
||||
give: boolean;
|
||||
}
|
||||
|
||||
export type { ColorDict, Kink };
|
Loading…
Add table
Add a link
Reference in a new issue