TypeScript Interfaces vs Types

Поділитися
Вставка
  • Опубліковано 10 вер 2024

КОМЕНТАРІ • 112

  • @zip184
    @zip184 4 роки тому +83

    "The short answer, and the one that let's you stop watching this video..." Bravo

  • @hansschenker
    @hansschenker 3 роки тому +82

    Using Types in Typescript favors for Functional Style Programming. You can compose complex types from simple types.
    Using Interfaces tend towards an OOP Style. You define the shape of objects. You can mimic an object hierarchy with interface merging (intefaces with the same name merge into one)!
    For me: Composition over Inheritance!

    • @codingsurvivor1377
      @codingsurvivor1377 3 роки тому +4

      That was my thought also. When an interface is extended, changing the interface may break children interfaces.

    • @SpeakChinglish
      @SpeakChinglish 3 роки тому +1

      I think this is the better recommendation, especially in JS/TS world where more people prefer composition in general (e.g. React functional components instead of Class components now we have hooks).
      I think inheritance and interface might be more familiar to people coming from from OOP languages, but going with Types will just make you practice composition programming more.

    • @verified_tinker1818
      @verified_tinker1818 2 роки тому +5

      I never understood this mindset. You can write OOP with composition instead of inheritance, too. Traditionally, interfaces _are_ for composition. You distill an object into constituent parts and create an interface for each of those. You can then reuse them as you see fit.

    • @frewinchristopher
      @frewinchristopher 2 роки тому

      I still like interfaces for defining the shape of all the data my APIs return. I usually only reach for types when I need a functionality that interfaces don't provide (as mentioned in this video, is no longer a very big feature set)

    • @adventurer2395
      @adventurer2395 2 роки тому

      Just another "OOP bad, Functional good!" comment. Why not use both paradigms? Composition over inheritance can be achieved with any paradigm. OOP Example: You can create different interfaces without extending them and have the concrete class implement whichever interfaces it needs.

  • @kevin.malone
    @kevin.malone 2 роки тому +1

    Best video on this. You gave the answer quickly and simply, but provided enough valuable info to keep me watching the rest

  • @LucioPoveda
    @LucioPoveda 4 роки тому +10

    Short answer. Thanks for being honest sir. Even though I watched the entire video.

  • @caizza3
    @caizza3 2 роки тому

    I like how you talked about why to use either instead of just saying they exist. Very nice

  • @ManasTunga
    @ManasTunga 4 роки тому +8

    We can say interface is a contract that the implementing class,function or object must fulfil. But unlike interface types can’t be inherited. Nice video Harry . make a video on generics as well !!!

    • @hswolff
      @hswolff  4 роки тому +2

      Generics you say?!?!!? ua-cam.com/video/nePDL5lQSE4/v-deo.html

    • @tranhuuthu991990
      @tranhuuthu991990 4 роки тому

      interface can be inherited. T extends R. class can be used to create instance, that’s difference

    • @rand0mtv660
      @rand0mtv660 4 роки тому +2

      @@tranhuuthu991990 He said that types cannot be inherited, but interfaces can.

  • @Digibeario
    @Digibeario 4 роки тому +7

    Harry, thank you for this! I tend to be an interface person myself.... except when it comes to defining any kind of function, then it's straight to types. Absolutely agree with this video, haha! Great content as usual. :)

    • @hswolff
      @hswolff  4 роки тому +3

      Very glad we agree! Always scary putting my opinions out there and seeing what people think 🙈

  • @DedicatedManagers
    @DedicatedManagers 4 роки тому +1

    “I just had lunch... and it was delicious.” Hilariously said; actually did make me laugh out loud. Love your comfort level on camera... something I will now strive to obtain.

  • @imdad1593
    @imdad1593 3 роки тому +2

    three unique features that interfaces have:
    1. It is more geared towards objects, classes and functions
    2. It can extend
    3. It supports declaration merging

    • @tim19932002
      @tim19932002 2 роки тому

      No, the only difference is that interfaces can be declared again and be merged into one.
      type is not.
      Please see document:
      www.typescriptlang.org/docs/handbook/2/everyday-types.html#differences-between-type-aliases-and-interfaces

  • @seanknowles9985
    @seanknowles9985 3 роки тому

    Bro the best thing anyone has ever done, short answer first!

  • @UkraineKiT
    @UkraineKiT 3 роки тому

    Holy cow, what a deep voice you have!
    For me listening to this video was like a flashback of me playing "Splinter Cell: Chaos Theory" a long time ago)

  • @ChrisPHolder
    @ChrisPHolder 2 роки тому

    I love the fact that you gave me an actual answer in the begining, so many people enjoy wasting time or fill space I guess. (Still watch to the end :))

  • @megaworld8397
    @megaworld8397 Рік тому

    Thanks for the quality content. I got an answer to my question and became ur new subscriber

  • @hecalvin1659
    @hecalvin1659 Рік тому

    Declaration Merging: The same name of Interface declarations can be do merging, while types cannot because it is fixed and static shape of object.
    Types merging is by union and intersection
    Interface is the better choice when you write a library to export because interface could be extended and change to fit the needs of library client.
    If you use objects and classes, use interfaces as well. Otherwise use types.

  • @surajpawar1812
    @surajpawar1812 2 роки тому

    You explained very well. Finally I was able to understand Interface and type

  • @SogMosee
    @SogMosee 4 роки тому +7

    My recommendation is to use types exclusively for the simple reason that everything can be typed with the type keyword, but not everything can be typed with the interface keyword. Additionally, if you need to modify an object type, you can do so with the TypeScript global generics e.g. Omit, Required, and Partial.

  • @gosnooky
    @gosnooky 3 роки тому +2

    I like types for restricting values - type Thing = 'foo' | 'bar'

  • @fatahbe7667
    @fatahbe7667 Рік тому

    Thank you , my friend. this was awsom

  • @IkraamDev
    @IkraamDev 3 роки тому +1

    It would be cool if when you typed the Interface name, there would be a snippet that auto completes the object and places the cursor on the fields. So at 3:10 typing Person there should be a snippet for “= {
    name: $1,
    hungry: $0
    }

  • @swlockhorst
    @swlockhorst 3 роки тому +1

    Just the explanation I was looking for, thanks so much!

  • @buka.a
    @buka.a 3 роки тому +2

    I really hope to master this Typescript someday

  • @rafael86ny
    @rafael86ny Рік тому

    Just wow! Thank you!

  • @rafaelboschini5410
    @rafaelboschini5410 3 роки тому

    I like this explanation about types and interfaces, thanks!!!

  • @cas818028
    @cas818028 3 роки тому +1

    Nobody can seem to get this right, interfaces , classes types come from typed language based on traditional oop principles. Considering the author of typescript is the same author of c# it's easier to think if them I their traditional terms used in languages like java, c#, c++ etc. An interface normally defined a CONTRACT that a type MUST adhere too, traditionally an interface does not and can not have state. A type or class type on the other hand CAN have STATE and provide base functioning that can be overriden. If you don't adhere to these rules/definitions then they both from a practical standpoint in typescript become the same....

  • @ivanarevkov2089
    @ivanarevkov2089 4 роки тому +1

    Hi! Thanks for your video. It was released recently after I got this question for myself. What a magic world! :)

    • @hswolff
      @hswolff  4 роки тому +1

      Timing is everything :D

  • @luismunoz9126
    @luismunoz9126 3 роки тому +2

    thanks for the short answer, but why a white background? it hurts

  • @nicholaslandkamer5951
    @nicholaslandkamer5951 3 роки тому +1

    Loved the way you explained this. I realized I already knew most of this, but you definitely got a subscription because of your delivery! I’m one to your Next.js with Tailwindcss videos next! Keep making videos! Thanks!

  • @pradipspeaks9395
    @pradipspeaks9395 Рік тому

    How can I use an interface as type?
    Of course I can implement an interface as a type.. but what is the other way?

  • @mottahh4162
    @mottahh4162 4 роки тому +1

    You forgot the string enum
    you can do string enum in types but you can't do that in interface
    something like this
    type Gender = "Male" | "Female"

  • @mikhailmikheev8043
    @mikhailmikheev8043 4 роки тому

    Thanks Harry, you are great at explaining things!

  • @MridulBorah2014
    @MridulBorah2014 4 роки тому

    Harry, was waiting for this video, it's very useful and easy to understand. Also must say your house/bedroom is very nice and clean. I hope I can build a house like yours.

    • @hswolff
      @hswolff  4 роки тому +1

      Thanks so much for the kind words Mridul!
      I'm actually moving at the end of the month where I'll have my own personal dedicated office. I can't wait!

    • @MridulBorah2014
      @MridulBorah2014 4 роки тому

      @@hswolff all the best mentor...

  • @lukehatcher98
    @lukehatcher98 3 роки тому

    Excellent video! Very informative, thanks!

  • @oluwatomisinbabatunde8426
    @oluwatomisinbabatunde8426 3 роки тому

    i love your honesty keep being you

  • @jesti988
    @jesti988 4 роки тому

    q1.Write a program to define a class called Student properties rollno & name. Also create functions for reading and display these details. Then Define interface named GraceMark with property mark initialized to 10 and a function called readMark() to read marks.
    Then define a class called Result with properties mark1, mark2 and function total () for finding the total mark
    q2.Accept a number with 1-7 and print the corresponding Week, don’t use if statement.
    can u

  • @karimfayed3050
    @karimfayed3050 2 роки тому +1

    Love your video! It's really helpful, but which of them (interface or type) should be used when using Maps?

  • @qinghaowu3154
    @qinghaowu3154 4 роки тому

    what's the different between type Harry1 = Person | UA-camr and Type Harry2 Person & UA-camr ?

  • @thlfranklin
    @thlfranklin 2 роки тому

    great video!! thanks!

  • @basarat
    @basarat 4 роки тому +5

    Personally I mostly use types 🌹

  • @tomfox747
    @tomfox747 2 роки тому

    People are discussing the use of Interfaces VS Types. Could you not use Interfaces composed of types to overcome the shortfalls of both? Or would that create different issues?

  • @joelei4179
    @joelei4179 4 роки тому +1

    More typescript videos please!!

    • @hswolff
      @hswolff  4 роки тому +1

      Anything in particular you're interested in?

    • @joelei4179
      @joelei4179 4 роки тому +1

      Harry Wolff there are a lot of videos on typescript basics but very few on the best typescript practices in a real app. For example, what should we do with .d.ts files? Should we put all type declarations in one file and export/import them? Perhaps walk us through a real open source app that uses typescript and call out the best practices and why the app using typescript this way.

  • @ABHISHEK0058
    @ABHISHEK0058 3 роки тому

    Thank you

  • @tompov227
    @tompov227 3 роки тому

    Wow this was a very good explanation!

  • @chrisperry5658
    @chrisperry5658 3 роки тому

    fantastic video, thanks

  • @gatocode316
    @gatocode316 2 роки тому

    What font is that? Looks amazing

  • @filcondrat
    @filcondrat 4 роки тому +2

    so, when you unite two types, the union operator behaves like an Inclusive or?
    p.s. great tut!

    • @hswolff
      @hswolff  4 роки тому

      Pretty much! Thank you!

  • @yapayzeka
    @yapayzeka 3 роки тому

    perfect explanation

  • @mustafaalfar7936
    @mustafaalfar7936 4 роки тому

    Thank you Harry, Is there any convention to where to store interfaces and types within a react project? e.g: in the same file or make a separate folder/file for them.

    • @hswolff
      @hswolff  4 роки тому +2

      Usually I just store them in the same file that I'm using them, unless they're an interface or type that I'm going to use in multiple locations.

  • @stivaw
    @stivaw 3 роки тому

    You are awesome. I didnt know you, but you have a new subscriber

    • @hswolff
      @hswolff  3 роки тому

      Hey thank you! And welcome!

  • @timothyleelong6295
    @timothyleelong6295 4 роки тому

    Hi. Thank you for the video. I am a noob at TS. When talking about functional interfaces at 3:59: line 18 I would have just put (name: string). What is the purpose of adding : string; ?

    • @hswolff
      @hswolff  4 роки тому +2

      That's the return type of the function: (argName: string): returnType

  • @victorgarcia3526
    @victorgarcia3526 3 роки тому

    Great video!

  • @andresbustamante972
    @andresbustamante972 3 роки тому +1

    Nice video bro

  • @vishnyo
    @vishnyo 4 роки тому

    Thank for this video. Want something advance. Like Generics

    • @hswolff
      @hswolff  4 роки тому

      Generics you say?!?! ua-cam.com/video/nePDL5lQSE4/v-deo.html

    • @vishnyo
      @vishnyo 4 роки тому

      Harry Wolff hoho. Thx 😊

  • @Ricardoromero4444
    @Ricardoromero4444 3 роки тому +1

    Light theme feels like a flashbang

  • @nonmunch6627
    @nonmunch6627 4 роки тому

    Thank you so much for this!

    • @hswolff
      @hswolff  4 роки тому +1

      You are very welcome!

    • @nonmunch6627
      @nonmunch6627 4 роки тому

      @@hswolff I really really really appreciate it so much. This means a lot to me.

  • @dennisgonzales9521
    @dennisgonzales9521 3 роки тому

    Awesome!

  • @kalush81
    @kalush81 2 роки тому

    It looks that Interfaces also can be combined into unions just like Types can

  • @zathkal4004
    @zathkal4004 3 роки тому

    Could optional chaining (?) be also used with types ? Thanks for the video Harry (:

    • @sobanya_228
      @sobanya_228 2 роки тому

      Optional chaining can be used in JavaScript with no types or interfaces. It’s unrelated

  • @brennorris7061
    @brennorris7061 2 роки тому

    Pity this is wayyyyyy old now. You'd do a great job dispelling the ambient mode that's all around us .. waiting. .

  • @buddhanag4987
    @buddhanag4987 4 роки тому +1

    I used interfaces with unions now it support unions and intersections i guess

  • @asagiai4965
    @asagiai4965 3 роки тому +2

    Or I can confuse myself by using types inside interface like
    type name = string
    interface IPerson {
    name: name;
    }
    But don't do it because it is stupid.

    • @Gunnii95
      @Gunnii95 3 роки тому +1

      This could actually be helpful! For example, imagine you have a property for temperature and you have some functions that transform it between celcius and fahrenheit. Being able to specify which system is being used can be helpful to making your code more readable, even though it won't necessarily add any real safety. However this isn't super helpful currently, since TS loses the alias and doesn't use nominal types, as is mentioned in the video.

    • @johtfloridaman6227
      @johtfloridaman6227 3 роки тому +1

      And interfaces in types!

  • @ravalravi882
    @ravalravi882 3 роки тому

    Omg so Helpful... Love From India (Keep Make This kind Of videos) Thank you sir.....

  • @navanshu
    @navanshu 3 роки тому +1

    Good video, but please don't use light themes

  • @mehedihasansony
    @mehedihasansony Рік тому

    10:40 seems weird behavior because it also seems Harry is Union of Person AND|OR UA-camr rather than Harry is Person or UA-camr. needed an explanation for that. I think you were also not expecting that judging by your reaction. ?? @harry

  • @try-new-game
    @try-new-game 3 роки тому

    korea subtitle thx !!

  • @randompointlessness2766
    @randompointlessness2766 2 роки тому

    I came accross a library that doesnt have its types :( "react-graph-vis"

  • @stevecastaneda
    @stevecastaneda 4 роки тому

    Heeeeey! Thanks man. 😊

    • @hswolff
      @hswolff  4 роки тому

      You are welcome!

  • @danielzuzevich4161
    @danielzuzevich4161 2 роки тому

    Not all heroes wear capes.

  • @vincenguyendev
    @vincenguyendev 4 роки тому

    I'm missing your blog :(

    • @hswolff
      @hswolff  4 роки тому

      What you missing?

  • @katjapotensky4054
    @katjapotensky4054 3 роки тому

    "APIs should be open to extension, so use interfaces over types". This does not apply to typescript _at all_ (anymore?) (also, can you point to the source in the TS docs? I remember this as well but can't find it now). You can create an interface that extends a type and the other way around by using the intersection operator as long as the consumer of your api uses a compatible typescript version (and if not, is it really your responsibility?).
    The only thing you can't do with types (afaik) is declaration merging, and well, let's not go down that rabbit hole here.
    But you can do more complex stuff, like an xor type, mapped types, conditional types and so on. Granted, the actual parts of such a type alias can be interfaces or types, that doesn't matter, but I like consistency here.
    Also, "interfaces are for objects" sounds like it implies that "types are not for objects", and I don't see any reason why that should be the case? Both interfaces and types can describe objects since they both describe shape and that's about the only thing that matters to js. No matter if you mean objects that only carry data or objects that "encapsulate data and behaviour" as in "instances of classes".
    Personally, I only use type aliases because I feel like interfaces introduce a notion of OOP into the codebase and they hint (for me) to the use of classes and I have spent too much time of my life already debugging OOP code which is why I dislike it.
    I.e. "use interfaces if you want to go the OOP route and use type aliases if you want to do FP or if you prefer a single syntax to be used everywhere and don't mind not using methods".
    On the video itself: I think you structured it well and your examples are well thought out, easily digestible and approachable. I'll keep an eye on your channel :)

  • @muhammadahsan2292
    @muhammadahsan2292 4 роки тому

    I'm always hungry!

  • @johtfloridaman6227
    @johtfloridaman6227 3 роки тому

    Uses interfaces in types lol
    Find types abbreviate otherwise rather verbose type declarations

  • @ryancox4101
    @ryancox4101 3 роки тому

    The sore creek neuropathologically pinch because birth principally fear except a bent eyelash. same, used begonia

  • @pieter-venter
    @pieter-venter 4 роки тому

    You forgot to say "May the 4th be with you" #disappointed

  • @tonyjays
    @tonyjays Рік тому

    You coded on a white background...😡

  • @r0x304
    @r0x304 3 роки тому

    this dude really thinks he's the cherno

  • @loge9981
    @loge9981 4 роки тому

    wow ur so nice and cool i love u (no homo) :)