UNPKG
@animech-public/chonky
Version:
latest (0.14.8)
0.14.8
0.14.7
0.14.6
0.14.5
0.14.4
0.14.3
0.14.2
0.14.1
0.14.0
0.13.1
0.13.0
0.12.2
0.12.1
0.12.0
0.11.2
0.11.1
0.11.0
0.10.3
0.10.2
0.10.1
0.10.0
0.9.0
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.0
0.4.0
0.3.0
0.2.14
0.2.13
0.2.12
0.2.11
0.2.10
0.2.9
0.2.8
0.2.7
A File Browser component for React
chonky.io
AnimechTechnologies/Chonky
@animech-public/chonky
/
dist
/
components
/
external
/
FileNavbar-hooks.d.ts
9 lines
(8 loc)
•
268 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Nullable
}
from
'tsdef'
;
import
{
FileData
}
from
'../../types/file.types'
;
export
interface
FolderChainItem
{
file
:
Nullable
<
FileData
>;
disabled
:
boolean
;
onClick
?:
() =>
void
; }
export
declare
const
useFolderChainItems
:
() =>
FolderChainItem
[];