Ankr
Ankr

Reputation: 129

Interface for Ionic angular 2

Is it recommended to use interface in ionic 2?

Which means is it fine to use interface in ionic 2 or strictly we should not use it. My purpose of using interface in ionic2 is want to create a custom modal in my ionic application.

thanks AK

Upvotes: 0

Views: 204

Answers (1)

Stephan Strate
Stephan Strate

Reputation: 1421

I see no reason to not use TypeScript interface in your Ionic project.

It's a standard principle in TypeScript and the whole Ionic Framework is written in TypeScript. At the end it will be compiled to JavaScript anyways.

Here are some resources

Upvotes: 1

Related Questions