Skip to content

Commit

Permalink
fix(module:grid): Make all properties in EmbeddedProperty optional (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
qqabcv520 authored and vthinkxie committed Jun 25, 2019
1 parent 0bd1ae3 commit 107e731
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 107e731

Please sign in to comment.