File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ /* @flow strict */
2
+
3
+ declare module '@github/markdown-toolbar-element' {
4
+ declare export default class MarkdownToolbarElement extends HTMLElement {
5
+ get field(): ?HTMLTextAreaElement;
6
+ }
7
+ }
Original file line number Diff line number Diff line change 11
11
"prebuild" : " npm run clean && npm run lint && mkdir dist" ,
12
12
"build-umd" : " BABEL_ENV=umd babel index.js -o dist/index.umd.js" ,
13
13
"build-esm" : " BABEL_ENV=esm babel index.js -o dist/index.esm.js" ,
14
- "build" : " npm run build-umd && npm run build-esm" ,
14
+ "build" : " npm run build-umd && npm run build-esm && cp index.js.flow dist/index.esm.js.flow && cp index.js.flow dist/index.umd.js.flow " ,
15
15
"pretest" : " npm run build" ,
16
16
"test" : " karma start test/karma.config.js" ,
17
17
"prepublishOnly" : " npm run build"
You can’t perform that action at this time.
0 commit comments