Files
DefinitelyTyped/types/trim/index.d.ts
2017-03-24 14:27:52 -07:00

12 lines
379 B
TypeScript

// Type definitions for trim 0.01
// Project: https://www.npmjs.com/package/trim
// Definitions by: Steve Jenkins <https://github.com/skysteve>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function Trim(str: string): string;
declare namespace Trim {
function left(str: string): string;
function right(str: string): string;
}
export = Trim;