Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

TypeScript Default Exports - What is default exports?

What is Default export in TypeScript? Why we use it?

Default exports –
Each module can optionally export a default export and the default exports work with the keyword default and we can use only one default export per module.

Example -

export class User {
//Todo your logic here..
}
And then -
import { User } from "./User";

//OR

//BaseUrl.ts
export default "http://localhost:57431/Account/Login";

//Login.ts
import BaseUrl from "../BaseUrl";
console.log(BaseUrl); //"http://localhost:57431/Account/Login"

Stayed Informed – Learn Angular 2 with TypeScript

I hope you are enjoying with this post! Please share with you friends. Thank you!!


This post first appeared on Programming, please read the originial post: here

Share the post

TypeScript Default Exports - What is default exports?

×

Subscribe to Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×