@xyflow/svelte
Version:
Svelte Flow - A highly customizable Svelte library for building node-based editors, workflow systems, diagrams and more.
12 lines (11 loc) • 403 B
TypeScript
import type { ClassValue } from 'svelte/elements';
import type { BackgroundVariant } from './types';
type $$ComponentProps = {
lineWidth: number;
dimensions: [number, number];
variant: BackgroundVariant;
class?: ClassValue;
};
declare const LinePattern: import("svelte").Component<$$ComponentProps, {}, "">;
type LinePattern = ReturnType<typeof LinePattern>;
export default LinePattern;