6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import type { Callback } from './types.js';
|
|
declare const NOOP_PROMISE_LIKE: {
|
|
then: (fn: Callback) => void;
|
|
};
|
|
export { NOOP_PROMISE_LIKE };
|