mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
interface TruncateOptions {
|
|
clamp?: "end" | "front";
|
|
}
|
|
|
|
export function TruncateAction(
|
|
node: HTMLElement,
|
|
options?: TruncateOptions,
|
|
): {
|
|
update: (options?: TruncateOptions) => void;
|
|
};
|
|
|
|
export default TruncateAction;
|