Skip to content

Commit

Permalink
some types added
Browse files Browse the repository at this point in the history
  • Loading branch information
kanzitelli committed Oct 6, 2020
1 parent 15e59f2 commit 3f01e60
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/utils/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,11 @@ type ThemeType = {

type ThemesType = {
[key in ThemeNameType]: ThemeType;
};
};

type ThemedStylesFuncType<T> = (theme: ThemeType) => T;

type UseStylesOptionsType = {
normalize?: boolean;
darkmode?: boolean;
}

0 comments on commit 3f01e60

Please sign in to comment.