Skip to content

Commit

Permalink
chore(map): update api guardian files
Browse files Browse the repository at this point in the history
  • Loading branch information
demensky committed Oct 30, 2022
1 parent 0d8588d commit 42bbef0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion api_guard/dist/types/index.d.ts
Expand Up @@ -333,7 +333,6 @@ export declare function lastValueFrom<T, D>(source: Observable<T>, config: LastV
export declare function lastValueFrom<T>(source: Observable<T>): Promise<T>;

export declare function map<T, R>(project: (value: T, index: number) => R): OperatorFunction<T, R>;
export declare function map<T, R, A>(project: (this: A, value: T, index: number) => R, thisArg: A): OperatorFunction<T, R>;

export declare function mapTo<R>(value: R): OperatorFunction<unknown, R>;
export declare function mapTo<T, R>(value: R): OperatorFunction<T, R>;
Expand Down
1 change: 0 additions & 1 deletion api_guard/dist/types/operators/index.d.ts
Expand Up @@ -155,7 +155,6 @@ export declare function last<T, S extends T>(predicate: (value: T, index: number
export declare function last<T, D = T>(predicate: (value: T, index: number, source: Observable<T>) => boolean, defaultValue?: D): OperatorFunction<T, T | D>;

export declare function map<T, R>(project: (value: T, index: number) => R): OperatorFunction<T, R>;
export declare function map<T, R, A>(project: (this: A, value: T, index: number) => R, thisArg: A): OperatorFunction<T, R>;

export declare function mapTo<R>(value: R): OperatorFunction<unknown, R>;
export declare function mapTo<T, R>(value: R): OperatorFunction<T, R>;
Expand Down

0 comments on commit 42bbef0

Please sign in to comment.