UNPKG
ink-form
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.2
1.0.1
1.0.0
Complex user-friendly form component for React Ink
github.com/lukasbach/ink-form
lukasbach/ink-form
ink-form
/
lib
/
FormHeader.d.ts
9 lines
(8 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
*
as
React
from
'react'
;
import
{
FormProps
}
from
'./types.js'
;
export
declare
const
HELP_SECTION_ID
=
"Help"
;
export
declare
const
FormHeader
:
React
.
FC
<
FormProps
& {
currentTab
:
number
;
onChangeTab
:
(
tab
:
number
) =>
void
;
editingField
?:
string
; }>;