@intuitionrobotics/user-account
Version:
22 lines • 622 B
TypeScript
import * as React from "react";
import { type Request_LoginAccount } from "../../shared/api.js";
export type ValueAndError = {
value?: string;
error?: string;
};
type State<T> = {
data: Partial<T>;
};
type Props<T> = {
validate?: (data: Partial<T>) => string | undefined;
};
export declare class Component_Login extends React.Component<Props<Request_LoginAccount>, State<Request_LoginAccount>> {
state: {
data: Partial<Request_LoginAccount>;
};
render(): React.JSX.Element;
private onValueChanged;
private loginClicked;
}
export {};
//# sourceMappingURL=Component_Login.d.ts.map