18 lines
350 B
TypeScript
18 lines
350 B
TypeScript
/**
|
|
*
|
|
* OrderList is used to managed the order of a collection.
|
|
*
|
|
* [Live Demo](https://primevue.org/orderlist)
|
|
*
|
|
* @module orderliststyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
export enum OrderListClasses {
|
|
root = 'p-orderlist',
|
|
controls = 'p-orderlist-controls'
|
|
}
|
|
|
|
export interface OrderListStyle extends BaseStyle {}
|