Trilium Frontend API
    Preparing search index...

    Interface FormFileUploadProps

    interface FormFileUploadProps {
        hidden?: boolean;
        inputRef?: Ref<HTMLInputElement>;
        multiple?: boolean;
        name?: string;
        onChange: (files: FileList) => void;
    }
    Index

    Properties

    hidden?: boolean
    inputRef?: Ref<HTMLInputElement>
    multiple?: boolean
    name?: string
    onChange: (files: FileList) => void