19 lines
783 B
TypeScript
19 lines
783 B
TypeScript
import { EntityDict } from '../../../oak-app-domain';
|
|
import { EntityDict as BaseEntityDict } from 'oak-domain/lib/types/Entity';
|
|
import { ReactComponentProps } from 'oak-frontend-base';
|
|
declare const _default: <ED2 extends EntityDict & BaseEntityDict, T2 extends keyof ED2>(props: ReactComponentProps<ED2, T2, false, {
|
|
filename?: string | undefined;
|
|
expiresAt?: number | undefined;
|
|
tips?: React.ReactNode;
|
|
onDownload?: ((qrCodeImage: string, filename?: string) => void) | undefined;
|
|
onRefresh?: (() => void) | undefined;
|
|
size?: number | undefined;
|
|
url: string;
|
|
loading?: boolean | undefined;
|
|
disableDownload?: boolean | undefined;
|
|
disabled: boolean;
|
|
color: string;
|
|
bgColor: string;
|
|
}>) => React.ReactElement;
|
|
export default _default;
|