dgeni-packages
Version:
A collection of dgeni packages for generating documentation from source code
20 lines (19 loc) • 559 B
TypeScript
import { Declaration } from 'typescript';
import { Location } from './Location';
/**
* The file (and the location in the file) from where an API doc element was sourced.
*/
export declare class FileInfo {
private declaration;
basePath: string;
location: Location;
filePath: any;
baseName: any;
extension: any;
relativePath: any;
projectRelativePath: any;
realFilePath: string;
realProjectRelativePath: any;
constructor(declaration: Declaration, basePath: string);
getRealFilePath(filePath: string): string;
}