@saasmakers/shared 0.1.0 → 0.1.1
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.
- package/dist/index.d.cts +12 -2
- package/dist/index.d.mts +12 -2
- package/dist/index.d.ts +12 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
interface Emoji {
|
|
1
|
+
interface Emoji$1 {
|
|
2
2
|
id: string
|
|
3
3
|
keywords: Record<Locale, [string, ...string[]]>
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
declare const emojis: {
|
|
7
7
|
category: string;
|
|
8
|
-
emojis: Emoji[];
|
|
8
|
+
emojis: Emoji$1[];
|
|
9
9
|
}[];
|
|
10
10
|
|
|
11
|
+
type Environment = 'development' | 'production' | 'test'
|
|
12
|
+
|
|
13
|
+
type LogLevel = 'debug' | 'error' | 'info' | 'warn'
|
|
14
|
+
|
|
15
|
+
interface Emoji {
|
|
16
|
+
id: string
|
|
17
|
+
keywords: Record<Locale, [string, ...string[]]>
|
|
18
|
+
}
|
|
19
|
+
|
|
11
20
|
export { emojis };
|
|
21
|
+
export type { Emoji, Environment, LogLevel };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
interface Emoji {
|
|
1
|
+
interface Emoji$1 {
|
|
2
2
|
id: string
|
|
3
3
|
keywords: Record<Locale, [string, ...string[]]>
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
declare const emojis: {
|
|
7
7
|
category: string;
|
|
8
|
-
emojis: Emoji[];
|
|
8
|
+
emojis: Emoji$1[];
|
|
9
9
|
}[];
|
|
10
10
|
|
|
11
|
+
type Environment = 'development' | 'production' | 'test'
|
|
12
|
+
|
|
13
|
+
type LogLevel = 'debug' | 'error' | 'info' | 'warn'
|
|
14
|
+
|
|
15
|
+
interface Emoji {
|
|
16
|
+
id: string
|
|
17
|
+
keywords: Record<Locale, [string, ...string[]]>
|
|
18
|
+
}
|
|
19
|
+
|
|
11
20
|
export { emojis };
|
|
21
|
+
export type { Emoji, Environment, LogLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
interface Emoji {
|
|
1
|
+
interface Emoji$1 {
|
|
2
2
|
id: string
|
|
3
3
|
keywords: Record<Locale, [string, ...string[]]>
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
declare const emojis: {
|
|
7
7
|
category: string;
|
|
8
|
-
emojis: Emoji[];
|
|
8
|
+
emojis: Emoji$1[];
|
|
9
9
|
}[];
|
|
10
10
|
|
|
11
|
+
type Environment = 'development' | 'production' | 'test'
|
|
12
|
+
|
|
13
|
+
type LogLevel = 'debug' | 'error' | 'info' | 'warn'
|
|
14
|
+
|
|
15
|
+
interface Emoji {
|
|
16
|
+
id: string
|
|
17
|
+
keywords: Record<Locale, [string, ...string[]]>
|
|
18
|
+
}
|
|
19
|
+
|
|
11
20
|
export { emojis };
|
|
21
|
+
export type { Emoji, Environment, LogLevel };
|