mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
build(types): copy .d.ts files from src to types (#1218)
This commit is contained in:
parent
4d955900ad
commit
5209f329bd
13 changed files with 90 additions and 22 deletions
11
types/Breakpoint/breakpoints.d.ts
vendored
Normal file
11
types/Breakpoint/breakpoints.d.ts
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* Pixel sizes of Carbon grid breakpoints.
|
||||
* @type {Record<BreakpointSize, BreakpointValue>}
|
||||
*/
|
||||
export const breakpoints: Record<BreakpointSize, BreakpointValue>;
|
||||
|
||||
export type BreakpointSize = "sm" | "md" | "lg" | "xlg" | "max";
|
||||
|
||||
export type BreakpointValue = 320 | 672 | 1056 | 1312 | 1584;
|
||||
|
||||
export default breakpoints;
|
Loading…
Add table
Add a link
Reference in a new issue