wix-storybook-utils
Version:
Utilities for automated component documentation within Storybook
26 lines (23 loc) • 519 B
text/typescript
export interface Config {
importFormat?: string;
importTestkitPath?: string;
moduleName?: string;
repoBaseURL?: string;
issueURL?: string;
testkits?: Testkits;
testkitsWarning?: string;
unifiedTestkit?: boolean;
playgroundComponentsPath?: string;
playgroundComponents?: Record<string, React.ReactNode>;
feedbackText?: string;
story?: {
testkit?: boolean;
source?: boolean;
};
}
export interface Testkits {
[key: string]: Testkit;
}
export interface Testkit {
template: string;
}