Tapuscrit: Interfaces vs Types

Quelle est la différence entre ces états (interface vs type)?

interface X {
    a: number
    b: string
}

type X = {
    a: number
    b: string
};
InformationsquelleAutor | 2016-05-15