This commit is contained in:
Benjamin Toby
2024-12-12 07:01:57 +01:00
parent 7e3bed4567
commit 7b9ec5404e
4 changed files with 16 additions and 76 deletions
+13
View File
@@ -0,0 +1,13 @@
export const numberfy: (num: any, decimals?: number) => number;
export const slugify: (str: string) => string;
export const serializeCookies: typeof import("./serialize-cookies");
export const serializeQuery: typeof import("./serialize-query");
export const trimSql: typeof import("./trim-sql");
export const EJSON: {
parse: (string: string | null | number, reviver?: (this: any, key: string, value: any) => any) => {
[x: string]: any;
} | {
[x: string]: any;
}[] | undefined;
stringify: (value: any, replacer?: ((this: any, key: string, value: any) => any) | null, space?: string | number) => string | undefined;
};