forked from kidonng/unocss-preset-daisy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daisyui.d.ts
77 lines (58 loc) · 1.72 KB
/
daisyui.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
declare module 'daisyui/src/theming/index.js' {
// The value can also be a string, ignore them as they are filtered
const colors: Record<string, string>
export default colors
}
declare module 'daisyui/dist/utilities.js' {
import type {CssInJs} from 'postcss-js'
const utilities: CssInJs
export default utilities
}
declare module 'daisyui/dist/base.js' {
import type {CssInJs} from 'postcss-js'
const base: CssInJs
export default base
}
declare module 'daisyui/dist/unstyled.js' {
import type {CssInJs} from 'postcss-js'
const unstyled: CssInJs
export default unstyled
}
declare module 'daisyui/dist/unstyled.rtl.js' {
import type {CssInJs} from 'postcss-js'
const unstyledRtl: CssInJs
export default unstyledRtl
}
declare module 'daisyui/dist/styled.js' {
import type {CssInJs} from 'postcss-js'
const styled: CssInJs
export default styled
}
declare module 'daisyui/dist/styled.rtl.js' {
import type {CssInJs} from 'postcss-js'
const styledRtl: CssInJs
export default styledRtl
}
declare module 'daisyui/dist/utilities-unstyled.js' {
import type {CssInJs} from 'postcss-js'
const utilitiesUnstyled: CssInJs
export default utilitiesUnstyled
}
declare module 'daisyui/dist/utilities-styled.js' {
import type {CssInJs} from 'postcss-js'
const utilitiesStyled: CssInJs
export default utilitiesStyled
}
declare module 'daisyui/src/theming/themes.js' {
const themes: Record<string, Record<string, string>>
export default themes
}
declare module 'daisyui/src/theming/functions.js' {
import type {CssInJs} from 'postcss-js'
export function injectThemes(
addBase: (theme: CssInJs) => void,
config: (key: string) => unknown,
themes: Record<string, Record<string, string>>,
colorFunction: 'hsl' | 'lch'
): void
}