otp-code-component
Version:
Google Authenticator 验证组件
12 lines (10 loc) • 335 B
TypeScript
import type { Components, JSX } from "../types/components";
interface GoogleAuth extends Components.GoogleAuth, HTMLElement {}
export const GoogleAuth: {
prototype: GoogleAuth;
new (): GoogleAuth;
};
/**
* Used to define this component and all nested components recursively.
*/
export const defineCustomElement: () => void;