* feat: captcha example * fix: fix lint errors * chore: event handling and methods * chore: add accessibility features ARIA labels and roles --------- Co-authored-by: vince <vince292007@gmail.com>
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
export { default as PointSelectionCaptcha } from './point-selection-captcha.vue';
|
|
export interface Point {
|
|
i: number;
|
|
x: number;
|
|
y: number;
|
|
t: number;
|
|
}
|
|
export type ClearFunction = () => void;
|