mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
14 lines
492 B
TypeScript
14 lines
492 B
TypeScript
interface String {
|
|
/** Removes the trailing white space and line terminator characters from a string. */
|
|
trimEnd(): string;
|
|
|
|
/** Removes the leading white space and line terminator characters from a string. */
|
|
trimStart(): string;
|
|
|
|
/** Removes the leading white space and line terminator characters from a string. */
|
|
trimLeft(): string;
|
|
|
|
/** Removes the trailing white space and line terminator characters from a string. */
|
|
trimRight(): string;
|
|
}
|