@jsdocs-io/extractor
Version:
Analyze and extract the API from npm packages
17 lines (13 loc) • 421 B
text/typescript
/**
* `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;
}