Initial commit - Event Planner application
This commit is contained in:
15
node_modules/kysely/dist/esm/plugin/camel-case/camel-case.d.ts
generated
vendored
Normal file
15
node_modules/kysely/dist/esm/plugin/camel-case/camel-case.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
export type StringMapper = (str: string) => string;
|
||||
/**
|
||||
* Creates a function that transforms camel case strings to snake case.
|
||||
*/
|
||||
export declare function createSnakeCaseMapper({ upperCase, underscoreBeforeDigits, underscoreBetweenUppercaseLetters, }?: {
|
||||
upperCase?: boolean | undefined;
|
||||
underscoreBeforeDigits?: boolean | undefined;
|
||||
underscoreBetweenUppercaseLetters?: boolean | undefined;
|
||||
}): StringMapper;
|
||||
/**
|
||||
* Creates a function that transforms snake case strings to camel case.
|
||||
*/
|
||||
export declare function createCamelCaseMapper({ upperCase, }?: {
|
||||
upperCase?: boolean | undefined;
|
||||
}): StringMapper;
|
||||
Reference in New Issue
Block a user