ux-types
v1.7.0
Published
ux-types for ux-lang, such as quickapp, vela app
Readme
Ux Types
Types for ux
Install
npm install ux-types --save-dev
Usage
JS File Type Hints
import { defineComponent } from 'ux-types';
export default defineComponent({
private: {
title: "title"
},
onShow() {
this.fn();
},
fn() {
console.log(this.title);
}
})JS Interface Hints
Create a jsconfig.json / tsconfig.json in your project root directory with the following content:
{
"compilerOptions": {
"module": "preserve",
"types": ["ux-types/feature"],
}
}