UNPKG

ctan

Version:

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

10 lines (9 loc) 280 B
import type { JSONSchemaType } from 'ajv'; export interface Errors { errors: Array<string>; } export declare const Errors: JSONSchemaType<Errors>; export interface NotFound extends Errors { errors: ['Not found']; } export declare const NotFound: JSONSchemaType<NotFound>;