ctan
Version:
CTAN (Comprehensive TeX Archive Network) API client for Node.js
17 lines (16 loc) • 385 B
TypeScript
import type { Author as AuthorV1_2 } from "../v1_2/responses.js";
export interface Author extends AuthorV1_2 {
title?: string;
von: string;
junior: string;
}
export interface PseudonymousAuthor {
key: string;
died: boolean;
pseudonym: string;
pkgs?: Array<string>;
}
export interface ApiVersion {
version: '1.3';
}
export * from "../v1_2/responses.js";