UNPKG

@uppy/provider-views

Version:

View library for Uppy remote provider plugins.

9 lines 270 B
import { h } from 'preact'; type UserProps = { i18n: (phrase: string) => string; logout: () => void; username: string | null; }; export default function User({ i18n, logout, username }: UserProps): h.JSX.Element; export {}; //# sourceMappingURL=User.d.ts.map