UNPKG

github-repository-distributor

Version:
9 lines (8 loc) 492 B
/// <reference types="lodash" /> import dayjs from 'dayjs'; import type { Repository, UserDefinedOptions } from './type'; export { dayjs }; export declare function getAllRepos(options: UserDefinedOptions): Promise<Repository[]>; export declare function groupByLang(repos: Repository[]): import("lodash").Dictionary<Repository[]>; export declare function write2Md(data: string, filepath?: string): Promise<void>; export declare function parseBoolean(bool?: string | boolean): boolean;