mirror of
https://github.com/toss/es-toolkit.git
synced 2024-11-28 12:05:41 +03:00
10 lines
432 B
Bash
Executable File
10 lines
432 B
Bash
Executable File
#!/bin/sh
|
|
echo "export * from './dist/array';" > array.d.ts
|
|
echo "export * from './dist/compat';" > compat.d.ts
|
|
echo "export * from './dist/function';" > function.d.ts
|
|
echo "export * from './dist/math';" > math.d.ts
|
|
echo "export * from './dist/object';" > object.d.ts
|
|
echo "export * from './dist/predicate';" > predicate.d.ts
|
|
echo "export * from './dist/promise';" > promise.d.ts
|
|
echo "export * from './dist/string';" > string.d.ts
|