Row .d.ts updated
parent
692dc38c13
commit
d92ca85108
|
@ -1,14 +1,38 @@
|
||||||
/**
|
/**
|
||||||
|
* Row component is a helper component used to create grouping structures in DataTable.
|
||||||
|
*
|
||||||
|
* [Live Demo](https://www.primereact.org/datatable/)
|
||||||
|
*
|
||||||
* @module row
|
* @module row
|
||||||
*/
|
*/
|
||||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines valid properties in Row component.
|
||||||
|
*/
|
||||||
export interface RowProps {}
|
export interface RowProps {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines valid slots in Row component.
|
||||||
|
*/
|
||||||
export interface RowSlots {}
|
export interface RowSlots {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines valid emits in Row component.
|
||||||
|
*/
|
||||||
export interface RowEmits {}
|
export interface RowEmits {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* **PrimeVue - Row**
|
||||||
|
*
|
||||||
|
* _Row component is a helper component used to create grouping structures in DataTable._
|
||||||
|
*
|
||||||
|
* [Live Demo](https://www.primevue.org/datatable/)
|
||||||
|
* --- ---
|
||||||
|
* 
|
||||||
|
*
|
||||||
|
* @group Component
|
||||||
|
*/
|
||||||
declare class Row extends ClassComponent<RowProps, RowSlots, RowEmits> {}
|
declare class Row extends ClassComponent<RowProps, RowSlots, RowEmits> {}
|
||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
declare module '@vue/runtime-core' {
|
||||||
|
@ -17,13 +41,4 @@ declare module '@vue/runtime-core' {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* Row is a helper component to create column group.
|
|
||||||
*
|
|
||||||
* Demos:
|
|
||||||
*
|
|
||||||
* - [DataTable](https://www.primefaces.org/primevue/datatable/colgroup)
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
export default Row;
|
export default Row;
|
||||||
|
|
Loading…
Reference in New Issue