Skip to content

Commit

Permalink
feat: Expose OptionsSet
Browse files Browse the repository at this point in the history
  • Loading branch information
aholstenson committed Oct 6, 2019
1 parent 6f29821 commit 632d085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/values/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export interface Options<OptionTypes extends object> {
toArray(): ReadonlyArray<Option<any>>;
}

class OptionsSet<OptionTypes extends object> implements Options<OptionTypes> {
export class OptionsSet<OptionTypes extends object> implements Options<OptionTypes> {
private readonly matches: Option<any>[];

constructor(matches: Option<any>[]) {
Expand Down

0 comments on commit 632d085

Please sign in to comment.