UNPKG

packagist-api-client

Version:

Packgist (PHP Package Repository) API client in JavaScript.

8 lines (7 loc) 311 B
interface IPackagistListResponse { packageNames: [string]; } export declare function listAll(): Promise<IPackagistListResponse>; export declare function listByOrg(vendor: string): Promise<IPackagistListResponse>; export declare function listByType(type: string): Promise<IPackagistListResponse>; export {};