You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
327 B

  1. import {ListColTypeAddress} from "@app/_components/list/list-col-type-address";
  2. export interface ListColDefinition {
  3. name: string,
  4. text: string,
  5. type: string,
  6. field?: string,
  7. address?: ListColTypeAddress,
  8. sortable?: boolean,
  9. subResource?: string,
  10. length?: number,
  11. displayedLength?: number
  12. }