Answers for "typescript export variable"

0

typescript export variable

//Let's say you want to export the arr variable from file1.ts:
const arr = [1,2,3];
export { arr };

//Then you just have to import when you need it
import { arr } from "./file1";
console.log(arr.length);
Posted by: Guest on October-23-2021

Code answers related to "typescript export variable"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language