Skip to content

Commit

Permalink
πŸ› fixed incorrect typings for Netlify Config
Browse files Browse the repository at this point in the history
  • Loading branch information
8eecf0d2 committed Oct 16, 2018
1 parent d647cbb commit 9fbcacf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ts/netlify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ export namespace Netlify {
functions: string;
command: string;
}
context: any;
redirects: Netlify.Redirect[];
headers: Netlify.Headers[];
context?: any;
redirects?: Netlify.Redirect[];
headers?: Netlify.Headers[];
}
export interface Redirect {
from: string;
Expand Down

0 comments on commit 9fbcacf

Please sign in to comment.