forked from helpers/handlebars-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
49 lines (41 loc) · 1.39 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Type definitions for handlebars-helpers 0.5
// Project: http://assemble.io/helpers/, https://github.com/helpers/handlebars-helpers
// Definitions by: Toilal <https://github.com/Toilal>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import * as Handlebars from 'handlebars';
declare function helpers(groups?: helpers.Options | string | string[], options?: helpers.Options): { [name: string]: Handlebars.HelperDelegate };
interface Utils {
/**
* Returns true if the given value contains the given
* `object`, optionally passing a starting index.
*/
contains<T>(val: T[], obj: T, start: number): boolean;
/**
* Remove leading and trailing whitespace and non-word
* characters from the given string.
*/
chop(str: string): string;
/**
* Change casing on the given `string`, optionally
* passing a delimiter to use between words in the
* returned string.
*
* ```handlebars
* utils.changecase('fooBarBaz');
* //=> 'foo bar baz'
*
* utils.changecase('fooBarBaz' '-');
* //=> 'foo-bar-baz'
* ```
*/
changecase(str: string, fn: (str: string) => string): string;
}
declare namespace helpers {
interface Options {
handlebars?: typeof Handlebars | undefined;
hbs?: typeof Handlebars | undefined;
}
const utils: Utils;
}
export = helpers;