face-api/build/factories/WithAge.d.ts

6 lines
272 B
TypeScript
Raw Normal View History

2020-08-18 14:04:33 +02:00
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>;
//# sourceMappingURL=WithAge.d.ts.map