FaceMatch.d.ts 322 B

123456789101112
  1. export interface IFaceMatch {
  2. label: string;
  3. distance: number;
  4. }
  5. export declare class FaceMatch implements IFaceMatch {
  6. private _label;
  7. private _distance;
  8. constructor(label: string, distance: number);
  9. get label(): string;
  10. get distance(): number;
  11. toString(withDistance?: boolean): string;
  12. }