@storybook/addon-svelte-csf
Version:
Allows to write stories in Svelte syntax
8 lines (7 loc) • 393 B
TypeScript
import type { getStoriesIdentifiers } from '../../../parser/analyse/story/attributes/identifiers.js';
import { type ESTreeAST } from '../../../parser/ast.js';
interface NamedExportStoriesParams {
storiesIdentifiers: ReturnType<typeof getStoriesIdentifiers>;
}
export declare function createNamedExportStories(params: NamedExportStoriesParams): ESTreeAST.ExportNamedDeclaration;
export {};