updated flowchart.js to 1.14.2 (#671)

using types from the package instead of our own
This commit is contained in:
Philip Molares 2020-10-11 21:03:23 +02:00 committed by GitHub
parent 02ae83ba5e
commit 36679753d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 18 deletions

View file

@ -1,13 +0,0 @@
declare module 'flowchart.js' {
type Options = {
'line-width': number,
'fill': string,
'font-size': string,
'font-family': string
}
type ParseOutput = {
clean: () => void,
drawSVG: (container: HTMLElement, options: Options) => void,
}
export const parse: (code: string) => ParseOutput
}