Export all
Adds a export for all files in current dir.
output example:
// files:
// TestTsx.tsx
// testTs.ts
// testJs.js
// Test.jsx
// testFold/index.ts
// testFold/index.tsx
// output:
export * from './TestTsx'
export * from './testTs'
export * from './testJs'
export * from './Test'
export * from './testFold'
Usage
| |