mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 12:30:18 +00:00
15 lines
320 B
TypeScript
15 lines
320 B
TypeScript
/// <reference path="./jquery-truncate-html.d.ts" />
|
|
|
|
|
|
function truncateHtmlString(): string {
|
|
return $.truncate('<p>Stuff and <i>Nonsense</i></p>', {
|
|
length: 13
|
|
});
|
|
}
|
|
|
|
function truncateVirtualElement (): JQuery {
|
|
return $('<p>Stuff and <i>Nonsense</i></p>').truncate({
|
|
length: 13
|
|
});
|
|
}
|