Skip to content

Ihor16/typescript-tutorial

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Finance Logger

TypeScript web application. Created following The Net Ninja YouTube tutorial.

Class Diagram

classDiagram
    class Formattable{
        <<interface>>
        +format(): string
    }

    class Invoice{
        -client: string
        -details: string
        +amount: number
    }
    Formattable<|..Invoice

    class Payment{
        -recipient: string
        -details: string
        +amount: number
    }
    Formattable<|..Payment

    class ListRenderer{
        +render(Formattable, string): void
    }
Loading

About

All the course files for the TypeScript tutorial playlist on The Net Ninja YouTube channel.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 39.3%
  • JavaScript 32.3%
  • HTML 16.3%
  • CSS 12.1%