Skip to content

Commit bd077b5

Browse files
authored
Merge pull request #17 from ednjv/support-import
Support import and exports
2 parents 9e2444f + 016cddc commit bd077b5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

index.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export function clean(rut: string): string;
2+
3+
export function validate(rut: string): boolean;
4+
5+
export function format(rut: string): string;

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"node": ">=4"
1414
},
1515
"files": [
16-
"index.js"
16+
"index.js",
17+
"index.d.ts"
1718
],
1819
"keywords": [
1920
"validar",

0 commit comments

Comments
 (0)