fix: init
This commit is contained in:
5
src/index.ts
Normal file
5
src/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export * from './math'
|
||||
|
||||
export function add(num1: number, num2: number) {
|
||||
return num1 + num2;
|
||||
}
|
||||
3
src/math.ts
Normal file
3
src/math.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function getRandomNumber() {
|
||||
return Math.random();
|
||||
}
|
||||
Reference in New Issue
Block a user