mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import type { Action } from "svelte/action";
|
|
|
|
interface TruncateOptions {
|
|
clamp?: "end" | "front";
|
|
}
|
|
|
|
export declare const truncate: Action<HTMLElement, TruncateOptions>;
|
|
|
|
export default truncate;
|