aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/utils.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/tslint/lib/utils.d.ts')
-rw-r--r--node_modules/tslint/lib/utils.d.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/node_modules/tslint/lib/utils.d.ts b/node_modules/tslint/lib/utils.d.ts
index 07f3bf5e5..9d7aa545e 100644
--- a/node_modules/tslint/lib/utils.d.ts
+++ b/node_modules/tslint/lib/utils.d.ts
@@ -1,4 +1,3 @@
-/// <reference types="node" />
/**
* @license
* Copyright 2016 Palantir Technologies, Inc.
@@ -15,6 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+/// <reference types="node" />
/**
* Enforces the invariant that the input is an array.
*/
@@ -57,3 +57,6 @@ export declare function readBufferWithDetectedEncoding(buffer: Buffer): string;
export declare type Encoding = "utf8" | "utf8-bom" | "utf16le" | "utf16be";
export declare function detectBufferEncoding(buffer: Buffer, length?: number): Encoding;
export declare function denormalizeWinPath(path: string): string;
+export declare function isPascalCased(name: string): boolean;
+export declare function isCamelCased(name: string): boolean;
+export declare function isKebabCased(name: string): boolean;