@mythpe/js-helpers
Version:
Library of plugins & shortcuts that use JavaScript, also includes the Vue3 plugin with quasar apps
27 lines (22 loc) • 567 B
TypeScript
/*
* MyTh Ahmed Faiz Copyright © 2016-2024 All rights reserved.
* Email: mythpe@gmail.com
* Mobile: +966590470092
* Website: https://www.4myth.com
* Github: https://github.com/mythpe
*/
/* eslint-disable */
declare module 'lodash' {
interface LoDashStatic {
/**
* Converts string to pascal case.
*
* @param string The string to convert.
* @return Returns the pascal cased string.
*/
pascalCase (string?: string): string;
pluralize (string?: string): string;
singularize (string?: string): string;
}
}
export {}