Sobre mim

import { Human } from 'world/human'
import { CoffeeMachine, Coffee } from 'world/needs'
import { Jetbrains, Copilot, Code } from 'lara/computer'
import { Tidal } from 'world/music'

class L4R4V131R4 implements Human {
    const name = 'Lara Vieira'
    let age = 26
    let job = 'Frontend dev'
    const country = 'Brazil'
    const favoriteColor = '#5E3E8C' // Purple
    const workPlace = 'remote'
    const headphones = true
    
    public makeCoffee(express: boolean): Coffee {
        return CoffeeMachine.make(express)
    }
    
    public code(language: string = 'PHP'): Code {
        const ide = language === 'PHP' ? Jetbrains.PHPSTORM : JetBrains.WEBSTORM
        
        return Copilot.code(language, ide).toString()
    }
    
    public play(music: string = '') {
        return Tidal.play(music)
    }
}

function whoIsLara() {
    return new L4R4V131R4()
}

export default whoIsLara

Meus Projetos