mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-25 13:10:41 +08:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
/// <reference path="../node/node.d.ts" />
|
|
declare module Utils {
|
|
class StringFce {
|
|
static format(s: string, args: any): string;
|
|
}
|
|
class NumberFce {
|
|
static GetNegDigits(value: string): number;
|
|
}
|
|
}
|
|
declare module "node-Utils" {export = Utils;}
|