Merge pull request #10013 from wKich/fix-storyinput-params-types

Core: Fix StoryInput parameters typings
This commit is contained in:
Michael Shilman 2020-03-11 15:19:02 +08:00 committed by GitHub
commit d171d8376f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ export interface Story {
isRoot: false;
isLeaf: true;
parameters?: {
filename: string;
fileName: string;
options: {
hierarchyRootSeparator?: RegExp;
hierarchySeparator?: RegExp;
@ -69,7 +69,7 @@ export interface StoryInput {
kind: string;
children: string[];
parameters: {
filename: string;
fileName: string;
options: {
hierarchyRootSeparator: RegExp;
hierarchySeparator: RegExp;