-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5992d4d
commit e29be9e
Showing
2 changed files
with
39 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
export declare function camelCaseTransform(key: string): string; | ||
export declare function isSimpleKey(key: string): boolean; | ||
export declare function dirname(path: string): string; | ||
export declare function escapeStringForSingleQuotes(str: string): string; | ||
export declare function escapeStringForDoubleQuotes(str: string): string; | ||
export declare function escapeStringForBacktickQuotes(str: string): string; | ||
interface ShouldIncludeOptions { | ||
include: string[]; | ||
exclude: string[]; | ||
} | ||
export declare function expandPaths(paths: string[]): string[]; | ||
export declare const shouldInclude: (type: string, options: ShouldIncludeOptions) => boolean; | ||
export {}; |