UNPKG
@fefade/vue
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Reusable Vue UI components powered by the FEFADE core system.
fefade.dev
dxdns/fefade
@fefade/vue
/
dist
/
symbols
/
ThemeConfigSymbol.d.ts
8 lines
(7 loc)
•
255 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
ThemeColorType
,
ThemeModeType
}
from
'@fefade/core/types'
;
import
{
InjectionKey
,
Ref
}
from
'vue'
;
export
declare
const
ThemeConfigSymbol
:
InjectionKey
<{
mode
:
Ref
<
ThemeModeType
>;
colors
:
Ref
<
ThemeColorType
>;
toggle
:
() =>
void
; }>;