Skip to content

Commit

Permalink
Mark optional parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
XVincentX committed Sep 30, 2017
1 parent 686e535 commit 254e862
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ declare global {
}

export interface Plugin {
version: string,
policies: Array<string>,
version?: string,
policies?: Array<string>,
init(context: PluginContext): void
options: object
options?: object
}
}
}
Expand Down

0 comments on commit 254e862

Please sign in to comment.