pragmate-ui
Version:
An advanced, on-demand React UI library optimized for BeyondJS. Pragmate UI provides modular, responsive, and accessible components with a focus on efficient bundle sizes and a streamlined development process.
27 lines (21 loc) • 584 B
TypeScript
/************
Processor: ts
************/
import __beyond_dep_def_0 from 'react';
// definitions.ts
declare namespace ns_0 {
export interface IProps {
value: number;
maxValue?: number;
variant?: string;
type?: string;
}
}
// index.tsx
declare namespace ns_1 {
import React = __beyond_dep_def_0;
import IProps = ns_0.IProps;
export function ProgressBar(props: IProps): React.JSX.Element;
}
export import ProgressBar = ns_1.ProgressBar;
export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };