UNPKG

@animech-public/chonky

Version:

A File Browser component for React

10 lines (9 loc) 301 B
import { Nullable } from 'tsdef'; import { ChonkyIconName } from '../types/icons.types'; export interface FileActionGroup { name: string; sortOrder: number; icon?: Nullable<ChonkyIconName | string>; fileActionIds: string[]; } export type FileActionMenuItem = string | FileActionGroup;