12 lines
404 B
TypeScript
12 lines
404 B
TypeScript
/// <reference types="react" />
|
|
import { WebComponentProps } from "oak-frontend-base";
|
|
import { EntityDict } from "../../../../oak-app-domain";
|
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
|
password: string;
|
|
input: string;
|
|
}, {
|
|
setInput: (v: string) => void;
|
|
confirm: () => Promise<void>;
|
|
showTips: () => void;
|
|
}>): import("react").JSX.Element;
|