@nu-art/file-upload
Version:
File Uploader - Express & Typescript based backend framework
14 lines (13 loc) • 465 B
TypeScript
import { AppToolsScreen, ComponentSync } from '@nu-art/thunderstorm/frontend/index';
import { ResolvableContent } from '@nu-art/ts-common';
type Props = {
pageTitle?: ResolvableContent<string>;
};
type State = {};
export declare class ATS_FileUploader extends ComponentSync<Props, State> {
static screen: AppToolsScreen;
static defaultProps: Partial<Props>;
constructor(p: Props);
render(): import("react/jsx-runtime").JSX.Element;
}
export {};