UNPKG

@hankei6km/reposition

Version:

`reposition` is a command line tool to send a repository list to Notion database.

13 lines (12 loc) 369 B
import { Readable, Writable } from 'node:stream'; type Opts = { apiKey: string; databaseId: string; filterTimeRange: number; workersNum: number; stdin: Readable; stdout: Writable; stderr: Writable; }; export declare const cli: ({ apiKey, databaseId, filterTimeRange, workersNum, stdin, stdout, stderr }: Opts) => Promise<number>; export {};