This commit is contained in:
Benjamin Toby
2024-12-12 07:06:37 +01:00
parent 5ed9547e0c
commit da6b0b43c9
3 changed files with 19 additions and 17 deletions
-13
View File
@@ -1,13 +0,0 @@
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;
};