rxjs-audit-with
Advanced tools
Comparing version 1.2.0 to 1.2.1
import { OperatorFunction } from "rxjs"; | ||
export declare function auditWith<T, R>(callback: (value: T) => Promise<any>): OperatorFunction<T, R>; | ||
export default function auditWith<T, R>(callback: (value: T) => Promise<any>): OperatorFunction<T, R>; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.auditWith = void 0; | ||
const rxjs_1 = require("rxjs"); | ||
@@ -12,2 +11,2 @@ const operators_1 = require("rxjs/operators"); | ||
} | ||
exports.auditWith = auditWith; | ||
exports.default = auditWith; |
{ | ||
"name": "rxjs-audit-with", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "A template for creating npm packages using TypeScript and VSCode", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
8715
13