Files
DefinitelyTyped/business-rules-engine/Utils.d.ts
2016-03-17 21:06:54 +09:00

16 lines
504 B
TypeScript

// Type definitions for business-rules-engine - v1.0.20
// Project: https://github.com/rsamec/form
// Definitions by: Roman Samec <https://github.com/rsamec>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare namespace Utils {
class StringFce {
static format(s: string, args: any): string;
}
class NumberFce {
static GetNegDigits(value: string): number;
}
}
declare module "node-utils" {export = Utils;}