7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { $$asyncIterator } from 'iterall';
|
|
declare type EmptyIterable = AsyncIterator<any> & {
|
|
[$$asyncIterator]: any;
|
|
};
|
|
export declare const createEmptyIterable: () => EmptyIterable;
|
|
export {};
|