UNPKG

@hankei6km/reposition

Version:

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

12 lines (11 loc) 258 B
import type { RepoItem } from './repo'; export type FilterOpts = { now: number; filterTimeRange: number; }; export declare class Filter { opts: FilterOpts; nowSec: number; constructor(opts: FilterOpts); do(repo: RepoItem): boolean; }