@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
23 lines (22 loc) • 787 B
TypeScript
import { VueComponentBase } from "@omnia/fx/ux";
import { IWebComponentInstance } from "@omnia/fx";
import { NumericIndicatorStyles } from "../models";
import "./NumericIndicator.css";
import { INumericIndicatorComponent } from "./INumericIndicator";
import { IIcon } from "@omnia/fx-models";
export declare class NumericIndicatorComponent extends VueComponentBase implements IWebComponentInstance, INumericIndicatorComponent {
clickCallback: () => void;
valueBind: number;
label: string;
style?: typeof NumericIndicatorStyles;
height?: number;
description?: string;
color?: string;
icon?: IIcon;
valueUnit?: string;
private classes;
created(): void;
mounted(): void;
clickIndicator(): void;
render(): VueTsxSupport.JSX.Element;
}