feat(d.ts)

This commit is contained in:
2025-07-17 15:16:40 +03:00
parent 7ef36ff9fc
commit 01e2b30248
9 changed files with 582 additions and 34 deletions

10
rollup.config.js Normal file
View File

@ -0,0 +1,10 @@
import { dts } from "rollup-plugin-dts";
export default {
input: 'types/index.d.ts',
output: {
file: 'dist/index.d.ts',
format: 'es',
},
plugins: [dts()],
}