mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-17 10:40:34 -05:00
14 lines
476 B
TypeScript
14 lines
476 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 trailing white space and line terminator characters from a string. */
|
|
trimLeft(): string;
|
|
|
|
/** Removes the leading white space and line terminator characters from a string. */
|
|
trimRight(): string;
|
|
}
|