/** * The (source code) entry file of an entry point. * * Typically, an entry point refers to the `public_api.ts` source file, referencing all other * source files that are considered in the compilation (transformation) process, as well as * describing the API surface of a library. */ export declare type SourceFilePath = string; export declare type DirectoryPath = string;