Skip to content

Commit

Permalink
Made all fields optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
c1moore committed Aug 12, 2019
1 parent 40fac7e commit c3674c0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.d.ts
@@ -1,10 +1,10 @@
type WarmerConfig = {
flag: string,
concurrency: string,
test: string,
log: boolean,
correlationId: string,
delay: number,
flag?: string,
concurrency?: string,
test?: string,
log?: boolean,
correlationId?: string,
delay?: number,
};

/**
Expand Down

0 comments on commit c3674c0

Please sign in to comment.