Implemented 2D visualization for notes using Vue Flow
This commit is contained in:
20
node_modules/@vue-flow/background/dist/patterns.d.ts
generated
vendored
Normal file
20
node_modules/@vue-flow/background/dist/patterns.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
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 {}
|
||||
Reference in New Issue
Block a user