mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
fix(types): export component types
This commit is contained in:
parent
146362a810
commit
eb1824761d
19 changed files with 214 additions and 175 deletions
6
types/Grid/Column.d.ts
vendored
6
types/Grid/Column.d.ts
vendored
|
@ -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"]> {
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue