Skip to content

Commit

Permalink
feat: add plugins settoings field
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Jan 6, 2021
1 parent d709587 commit bb1da88
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion core/core/src/document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export interface SmartControls {
}

/**
* story prooperties that can be inherited from the document, or each story can have its properties
* story properties that can be inherited from the document, or each story can have its properties
*/

export interface StoryProps<Props = unknown> {
Expand Down Expand Up @@ -109,6 +109,11 @@ export interface StoryProps<Props = unknown> {
* array of wrapper functions (decorators) to be called when rendering each individual story.
*/
decorators?: StoryRenderFn[];

/**
* plugins configuration settings
*/
plugins?: any;
}

/**
Expand Down

0 comments on commit bb1da88

Please sign in to comment.