primevue-mirror/components/row/Row.d.ts

30 lines
566 B
TypeScript
Raw Normal View History

2023-02-28 08:29:30 +00:00
/**
* @module row
*/
2022-09-06 12:03:37 +00:00
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2022-09-14 11:26:01 +00:00
export interface RowProps {}
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
export interface RowSlots {}
2022-09-06 12:03:37 +00:00
2023-02-28 08:29:30 +00:00
export interface RowEmits {}
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
declare class Row extends ClassComponent<RowProps, RowSlots, RowEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Row: GlobalComponentConstructor<Row>;
2022-09-06 12:03:37 +00:00
}
}
/**
*
* Row is a helper component to create column group.
*
* Demos:
*
2022-09-14 11:26:01 +00:00
* - [DataTable](https://www.primefaces.org/primevue/datatable/colgroup)
2022-09-06 12:03:37 +00:00
*
*/
export default Row;