@devlander/collect-exports-for-bundle
Version:
Generate comprehensive export files for TypeScript/JavaScript projects with Rollup compatibility
11 lines (10 loc) • 296 B
TypeScript
declare const myLocalConstFunc: () => string;
declare function myLocalFuncFunc(): string;
declare var myLocalVarFunc: () => string;
declare const myLocalLetFunc: () => string;
declare class MyLocalClass {
myLocalFunc(): string;
}
declare enum MyLocalEnum {
myLocalValue = "Hello World"
}