Skip to content

Commit

Permalink
Update typings
Browse files Browse the repository at this point in the history
  • Loading branch information
kdzwinel committed Jul 26, 2018
1 parent 4648d48 commit d2ba4c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions typings/model/style.d.ts
Expand Up @@ -9,11 +9,11 @@ export interface BorderProps {
}

export interface ShadowProps {
color: string;
blur: number;
offsetX: number;
offsetY: number;
spread: number;
color?: string;
blur?: number;
offsetX?: number;
offsetY?: number;
spread?: number;
}

export default class Style {
Expand Down
4 changes: 2 additions & 2 deletions typings/model/symbolMaster.d.ts
Expand Up @@ -11,8 +11,8 @@ export interface SymbolMasterProps {
export interface GetSymbolInstanceProps {
x: number;
y: number;
width: number;
height: number;
width?: number;
height?: number;
}

export default class SymbolMaster extends Base {
Expand Down

0 comments on commit d2ba4c3

Please sign in to comment.