Skip to content

Commit

Permalink
fix(module:grid): Make all properties in EmbeddedProperty optional (N…
Browse files Browse the repository at this point in the history
  • Loading branch information
qqabcv520 authored and Ricbet committed Apr 9, 2020
1 parent 7177ab6 commit 96e097d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/grid/nz-col.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ import { startWith, takeUntil } from 'rxjs/operators';
import { NzRowDirective } from './nz-row.directive';

export interface EmbeddedProperty {
span: number;
pull: number;
push: number;
offset: number;
order: number;
span?: number;
pull?: number;
push?: number;
offset?: number;
order?: number;
}

@Directive({
Expand Down

0 comments on commit 96e097d

Please sign in to comment.