oak-general-business/es/components/user/password/update/web.d.ts

17 lines
515 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;
}, {
setPwd: (v: string) => void;
setAgain: (v: string) => void;
commit: () => Promise<void>;
onConfirm: () => void;
}>): React.JSX.Element;