UNPKG

@vue-flow/core

Version:

[![Vue flow](vue-flow.gif)](https://vueflow.dev/) ![top-language](https://img.shields.io/github/languages/top/bcakmakoglu/vue-flow) ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/bcakmakoglu/vue-flow) ![GitHub last commit](

21 lines (19 loc) 623 B
import type { FunctionalComponent } from 'vue' import type { BackgroundVariant } from './types' interface LinePatternProps { dimensions: [number, number] size?: number color: string } export declare const LinePattern: FunctionalComponent<LinePatternProps> interface DotPatternProps { radius: number color: string } export declare const DotPattern: FunctionalComponent<DotPatternProps> export declare const Patterns: { lines: FunctionalComponent<LinePatternProps, {}, any> dots: FunctionalComponent<DotPatternProps, {}, any> } export declare const DefaultBgColors: Record<BackgroundVariant, string> export {}