UNPKG

tsdk

Version:

Type-safe API development and code share tool for TypeScript projects.

13 lines (12 loc) 338 B
export interface AliasToRelativePathOptions { filePath: string; imports: string[]; config: { baseUrl?: string; paths?: { [key: string]: []; }; }; cwd?: string; } export declare function aliasToRelativePath({ filePath, imports, config, cwd, }: AliasToRelativePathOptions): string[];