UNPKG

@jsdocs-io/extractor

Version:

Analyze and extract the API from npm packages

14 lines 473 B
/** * `PackageFile` represents a file belonging to a package. */ export interface PackageFile { /** Filename */ readonly filename: string; /** If `true`, this file is the entry point to the package */ readonly isIndexFile?: boolean; /** URL in a remote repository linking to the file */ readonly url?: string; /** URL on unpkg.com linking to the file */ readonly unpkgURL?: string; } //# sourceMappingURL=package-file.d.ts.map