UNPKG
@masa-dev/react-signage
Version:
latest (3.6.0)
3.6.0
3.5.16
3.5.15
3.5.14
3.5.13
3.5.12
3.5.11
3.5.10
3.5.9
3.5.8
3.5.7
3.5.6
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.0
3.2.0
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.4.0
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
This is a react library for signage.
@masa-dev/react-signage
/
dist
/
features
/
debug
/
DebugContext.d.ts
7 lines
(6 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
DebugData
}
from
'./types'
;
export
type
DebugContextType
= {
debug
:
boolean
;
debugMessage
:
(
data
:
DebugData
) =>
void
; };
export
declare
const
DebugContext
:
import
(
"react"
).
Context
<
DebugContextType
>;