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.
34 lines (28 loc) • 757 B
TypeScript
/************
Processor: ts
************/
import * as __beyond_dep_ns_0 from 'pragmate-ui/base';
// definitions.ts
declare namespace ns_0 {
import IPUIProps = __beyond_dep_ns_0.IPUIProps;
export type IEvent = [{
date: string;
description: string;
title: string;
icon?: string;
}];
export interface IProps extends Omit<IPUIProps<IProps>, 'type'> {
events: IEvent;
}
}
// index.tsx
declare namespace ns_1 {
/// <reference types="react" />
import IProps = ns_0.IProps;
export function VerticalLine({
events,
variant
}: IProps): JSX.Element;
}
export import VerticalLine = ns_1.VerticalLine;
export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };