@appartmint/mint 1.0.6 → 1.0.7

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,11 @@
1
+ /**
2
+ * Minify Interface
3
+ */
4
+ export interface IMintMinify {
5
+ url: string,
6
+ format?: string[],
7
+ method?: string,
8
+ width?: number,
9
+ height?: number
10
+ }
11
+ export default IMintMinify;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Page Interface
3
+ */
4
+ export interface IMintPage {
5
+ id: string;
6
+ slug: string;
7
+ title?: string;
8
+ description?: string;
9
+ image?: string;
10
+ items?: any[];
11
+ createdAt?: string;
12
+ updatedAt?: string;
13
+ }
14
+ export default IMintPage;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Recaptcha Interface
3
+ */
4
+ export interface IMintRecaptcha {
5
+ token: string;
6
+ action: string;
7
+ };
8
+ export default IMintRecaptcha;