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