@storecraft/dashboard 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,32 @@
1
+ export default LoginLatestUpdates;
2
+ export type GithubCommit = {
3
+ sha: string;
4
+ node_id: string;
5
+ commit: {
6
+ author: {
7
+ name: string;
8
+ email: string;
9
+ date: string;
10
+ };
11
+ message: string;
12
+ url: string;
13
+ };
14
+ url: string;
15
+ html_url: string;
16
+ author: {
17
+ login: string;
18
+ id: string;
19
+ avatar_url: string;
20
+ url: string;
21
+ html_url: string;
22
+ };
23
+ };
24
+ export type GithubCommits = GithubCommit[];
25
+ export type CommitViewParams = {
26
+ commit: GithubCommit;
27
+ };
28
+ /**
29
+ *
30
+ * @param {React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>} params
31
+ */
32
+ declare function LoginLatestUpdates({ ...rest }: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>): import("react").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export function LogoText({ children, ...rest }: React.SVGProps<SVGSVGElement>): import("react").JSX.Element;
2
+ export function LogoGradient({ className }: React.SVGProps<SVGSVGElement>): import("react").JSX.Element;