Files
core/hwe/ts/inheritPoint.ts
T
2021-08-11 01:03:05 +09:00

21 lines
361 B
TypeScript

import _, {random} from "lodash";
declare global {
interface Window { formStart: any; }
}
export {}
function formStart() {
console.log(window.pathConfig.root);
const a = 10;
const b:number[] = [];
for(const v of _.range(10)){
b.push(random()*v);
}
console.log(a + 10);
console.log(b);
}
window.formStart = formStart;