fix(types): export component types

This commit is contained in:
Eric Liu 2020-11-25 10:01:04 -08:00
commit eb1824761d
19 changed files with 214 additions and 175 deletions

View file

@ -1,13 +1,13 @@
/// <reference types="svelte" />
type ColumnSize = boolean | number;
export type ColumnSize = boolean | number;
interface ColumnSizeDescriptor {
export interface ColumnSizeDescriptor {
span?: ColumnSize;
offset: number;
}
type ColumnBreakpoint = ColumnSize | ColumnSizeDescriptor;
export type ColumnBreakpoint = ColumnSize | ColumnSizeDescriptor;
export interface ColumnProps extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
/**