@biopassid/face-sdk
Version:
<h1 align="center"> <br> <a href="http://www.biopassid.com"><img src="https://uploads-ssl.webflow.com/5ec3d6d0293839cf102a656a/63a0d4cec83bbddea006d27a_biopassamarelo.svg" alt="BioPass ID" width="200"></a> <br>
15 lines (14 loc) • 417 B
TypeScript
import { ButtonOptions } from '../../types';
interface TakePictureButtonParams {
onClick: () => void;
active: boolean;
disabled: boolean;
options?: ButtonOptions;
}
interface TakePictureButtonElement {
element: HTMLElement;
active: boolean;
disabled: boolean;
}
export default function takePictureButton(params: TakePictureButtonParams): TakePictureButtonElement;
export {};