fix(types): export component types (#411)

This commit is contained in:
Eric Liu 2020-11-25 10:19:11 -08:00 committed by GitHub
commit 0d8064043f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 214 additions and 175 deletions

View file

@ -1,10 +1,10 @@
/// <reference types="svelte" />
type DropdownItemId = string;
export type DropdownItemId = string;
type DropdownItemText = string;
export type DropdownItemText = string;
interface DropdownItem {
export interface DropdownItem {
id: DropdownItemId;
text: DropdownItemText;
}