Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Nyaacinth/lovebird-types

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

lovebird-types

Type declarations of lovebird, a browser-based debug console for the LÖVE framework

NOTE: This Declaration is Designed to be used with TypeScriptToLua, Not Common Typescript

Command Description
yarn add -D lovebird-types Install this declaration
yarn add rxi/lovebird Install lovebird

Upon installation this declaration package can be linked to a tsconfig.json file.

{
    "compilerOptions": {
        "types": [
            "lovebird-types"
        ]
    }
}

And used anywhere like this:

import * as lovebird from "lovebird"

love.update = () => {
    lovebird.update()
}

Make sure to append ";./node_modules/?/?.lua" to your package.path to assist where Lua looks for modules. (for love2d you will need to do this with love.filesystem.setRequirePath)

package.path += ";./node_modules/?/?.lua"

// ... or in love2d (main.ts, conf.ts won't work):

love.filesystem.setRequirePath(love.filesystem.getRequirePath() + ";node_modules/?/?.lua")

Releases

No releases published

Packages

No packages published