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
/
src
/
types
/
selection.types.ts
10 lines
(7 loc)
•
297 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
FileIdTrueMap
}
from
'./file.types'
;
export
type
FileSelection
=
FileIdTrueMap
;
export
interface
SelectionModifiers
{
selectFiles
:
(
fileIds
:
string
[],
reset
?:
boolean
) =>
void
;
toggleSelection
:
(
fileId
:
string
,
exclusive
?:
boolean
) =>
void
;
clearSelection
:
() =>
void
; }