UNPKG

@zendesk/retrace

Version:

define and capture Product Operation Traces along with computed metrics with an optional friendly React beacon API

10 lines (9 loc) 337 B
import { type ChangeEvent } from 'react'; import * as React from 'react'; interface FileUploadButtonProps { name: string; id: string; onChange: (e: ChangeEvent<HTMLInputElement>) => void; } declare const FileUploadButton: ({ name, id, onChange }: FileUploadButtonProps) => React.JSX.Element; export default FileUploadButton;