interface.d.ts 467 B

12345678910111213141516
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. export type ColumnCount = 1 | 2 | 3 | 4 | 6 | 8 | 12 | 24;
  6. export interface NzListGrid {
  7. gutter?: number;
  8. span?: number;
  9. column?: ColumnCount;
  10. xs?: ColumnCount;
  11. sm?: ColumnCount;
  12. md?: ColumnCount;
  13. lg?: ColumnCount;
  14. xl?: ColumnCount;
  15. xxl?: ColumnCount;
  16. }