@storybook/addon-svelte-csf
Version:
Allows to write stories in Svelte syntax
13 lines (12 loc) • 414 B
TypeScript
import type { ESTreeAST } from '../../ast.js';
interface GetStringOptions {
node: ESTreeAST.Property;
filename: string;
}
export declare function getPropertyStringValue(options: GetStringOptions): string;
interface GetArrayOfStringOptions {
node: ESTreeAST.Property;
filename: string;
}
export declare function getPropertyArrayOfStringsValue(options: GetArrayOfStringOptions): string[];
export {};