We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/ComponentDriven/csf/blob/next/src/story.ts
export interface Parameters { [name: string]: any; }
Hi, I was trying to add an parameters.docs.story.iFrameHeight option but noticed that parameters is loosely typed.
parameters.docs.story.iFrameHeight
Something like below would be helpful to document all available options.
export interface Parameters { docs?: { story?: { iFrameHeight?: number; // other story params... }; // other docs params... }; // other top-level params... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/ComponentDriven/csf/blob/next/src/story.ts
Hi, I was trying to add an
parameters.docs.story.iFrameHeight
option but noticed that parameters is loosely typed.Something like below would be helpful to document all available options.
The text was updated successfully, but these errors were encountered: