13 lines
415 B
TypeScript
13 lines
415 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'wechatQrCode', false, {
|
|
url: string;
|
|
expiresAt: number;
|
|
disableDownload: boolean;
|
|
size: number;
|
|
disabled: boolean;
|
|
color: string;
|
|
bgColor: string;
|
|
}, {}>): React.JSX.Element | null;
|