@fluster.io/dev
Version:
15 lines (14 loc) • 589 B
TypeScript
import { ReactNode } from 'react';
import { FieldValues } from 'react-hook-form';
import { GeneralComboboxProps } from '../general_combobox';
interface FileExtensionGlobSelectProps<T extends FieldValues> extends Omit<GeneralComboboxProps<T>, "items"> {
glob: string;
basePath: string;
nThreads?: number;
formatOption?: (absoluteFilePath: string) => string;
}
export declare const FileExtensionGlobSelect: {
<T extends FieldValues>({ glob, formatOption, basePath, nThreads, ...props }: FileExtensionGlobSelectProps<T>): ReactNode;
displayName: string;
};
export {};