@storybook/addon-svelte-csf
Version:
Allows to write stories in Svelte syntax
9 lines (8 loc) • 301 B
TypeScript
import type { ESTreeAST } from '../../ast.js';
import type { SvelteASTNodes } from '../../extract/svelte/nodes.js';
interface Params {
nodes: SvelteASTNodes;
filename?: string;
}
export declare function getDefineMetaComponentValue(params: Params): ESTreeAST.Identifier | undefined;
export {};