Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Include module in Flow declaration #46

Merged
merged 2 commits into from
Oct 8, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions index.js.flow
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* @flow strict */

declare class DetailsDialogElement extends HTMLElement {
toggle(open: boolean): void;
declare module '@github/details-dialog-element' {
declare export default class DetailsDialogElement extends HTMLElement {
toggle(open: boolean): void;
}
}