mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
Add types for handlebars-helpers (#30620)
This commit is contained in:
committed by
Pranav Senthilnathan
parent
80b8a35848
commit
fa44bbf144
11
types/handlebars-helpers/handlebars-helpers-tests.ts
Normal file
11
types/handlebars-helpers/handlebars-helpers-tests.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import * as Handlebars from 'handlebars';
|
||||
import * as helpers from 'handlebars-helpers';
|
||||
|
||||
const handlebars = Handlebars.create();
|
||||
|
||||
helpers();
|
||||
helpers('helper');
|
||||
helpers(['helper']);
|
||||
helpers({handlebars});
|
||||
helpers('helper', {handlebars});
|
||||
helpers(['helper'], {handlebars});
|
||||
49
types/handlebars-helpers/index.d.ts
vendored
Normal file
49
types/handlebars-helpers/index.d.ts
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
// Type definitions for handlebars-helpers 0.5
|
||||
// Project: http://assemble.io/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;
|
||||
hbs?: typeof Handlebars;
|
||||
}
|
||||
|
||||
const utils: Utils;
|
||||
}
|
||||
|
||||
export = helpers;
|
||||
23
types/handlebars-helpers/tsconfig.json
Normal file
23
types/handlebars-helpers/tsconfig.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": false,
|
||||
"strictNullChecks": false,
|
||||
"strictFunctionTypes": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"handlebars-helpers-tests.ts"
|
||||
]
|
||||
}
|
||||
3
types/handlebars-helpers/tslint.json
Normal file
3
types/handlebars-helpers/tslint.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": "dtslint/dt.json"
|
||||
}
|
||||
Reference in New Issue
Block a user