1
0

index.ts 201 B

12345678
  1. export { default as PointSelectionCaptcha } from './point-selection-captcha.vue';
  2. export interface Point {
  3. i: number;
  4. x: number;
  5. y: number;
  6. t: number;
  7. }
  8. export type ClearFunction = () => void;