aurelia / vscode-extension

An extension for the VS Code editor that provides Intellisense capabilities to your Aurelia project.
MIT License
112 stars 25 forks source link

[comp]: typed bindables #192

Open hiaux0 opened 2 years ago

hiaux0 commented 2 years ago

<pbutton type="tertiary|">Tertiary</pbutton> <-- completion here

*/ export type ButtonType = "primary" | "secondary" | "tertiary" | "formfield";

@customElement("pbutton") export class PButton { @bindable.string type: ButtonType;