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.
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...
}