10 lines
347 B
TypeScript
10 lines
347 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function render(props: WebComponentProps<EntityDict, 'extraFile', true, {
|
|
style?: Record<string, string>;
|
|
className?: string;
|
|
avatarUrl?: string;
|
|
}, {
|
|
onPickByWeb: (files: File[]) => void;
|
|
}>): JSX.Element;
|