UNPKG

400 BTypeScriptView Raw
1import { FileDescription } from '../typechain/types';
2/**
3 * returns barrel files with reexports for all given paths
4 *
5 * @see https://github.com/basarat/typescript-book/blob/master/docs/tips/barrel.md
6 */
7export declare function createBarrelFiles(paths: string[], { typeOnly, postfix, moduleSuffix }: {
8 typeOnly: boolean;
9 postfix?: string;
10 moduleSuffix?: string;
11}): FileDescription[];