1 | import { 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 | */
|
7 | export declare function createBarrelFiles(paths: string[], { typeOnly, postfix, moduleSuffix }: {
|
8 | typeOnly: boolean;
|
9 | postfix?: string;
|
10 | moduleSuffix?: string;
|
11 | }): FileDescription[];
|