UNPKG

ctan

Version:

CTAN (Comprehensive TeX Archive Network) API client for Node.js

21 lines (20 loc) 425 B
import type { Package } from "./responses.js"; export interface AuthorsParameters { key?: string; } export interface AuthorParameters { ref?: boolean; } export interface TopicsParameters { key?: string; } export interface TopicParameters { ref?: boolean; } export interface PackagesParameters { key?: string; } export interface PkgParameters { drop?: Array<keyof Package>; 'keep-url'?: boolean; }