UNPKG
@waweb/microbase.context.app
Version:
latest (0.0.1)
0.0.1
watheialabs.com/microbase
@waweb/microbase.context.app
/
dist
/
app-context.d.ts
9 lines
(8 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/// <reference types="react" />
export
declare
type
AppContextType
= {
/** * primary color of theme. */
color
?:
string
; };
export
declare
const
AppContext
:
import
(
"react"
).
Context
<
AppContextType
>;