19 lines
552 B
TypeScript
19 lines
552 B
TypeScript
import { WebComponentProps } from "oak-frontend-base";
|
|
import React from "react";
|
|
import { EntityDict } from "../../../../oak-app-domain";
|
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
|
once: boolean;
|
|
pwd?: string;
|
|
again?: string;
|
|
error: string;
|
|
successful: boolean;
|
|
needVerifyPassword: boolean;
|
|
tip: string;
|
|
pwdMax: number;
|
|
}, {
|
|
setPwd: (v: string) => void;
|
|
setAgain: (v: string) => void;
|
|
commit: () => Promise<void>;
|
|
onConfirm: () => void;
|
|
}>): React.JSX.Element;
|