UNPKG

face-api.js

Version:

JavaScript API for face detection and face recognition in the browser with tensorflow.js

6 lines (5 loc) 240 B
export declare type WithAge<TSource> = TSource & { age: number; }; export declare function isWithAge(obj: any): obj is WithAge<{}>; export declare function extendWithAge<TSource>(sourceObj: TSource, age: number): WithAge<TSource>;