mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
// Type definitions for newline-remove 1.0
|
|
// Project: https://github.com/yoshuawuyts/newline-remove
|
|
// Definitions by: OpenByteDev <https://github.com/OpenByteDev>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/**
|
|
* Strip all newlines from the given value
|
|
*/
|
|
declare function removeNewlines(val: string): string;
|
|
|
|
export = removeNewlines;
|