chore: Add type checked rules, auto fix

This commit is contained in:
Sidharth Vinod
2024-06-30 00:58:02 +05:30
parent 51fc56b95d
commit 6b87fb3418
50 changed files with 185 additions and 185 deletions

View File

@@ -25,7 +25,7 @@ export const log: Record<keyof typeof LEVELS, typeof console.log> = {
fatal: warning,
};
export let setLogLevel: (level: keyof typeof LEVELS | number | string) => void;
export let setLogLevel: (level: keyof typeof LEVELS | number) => void;
export let getConfig: () => object;
export let sanitizeText: (str: string) => string;
export let commonDb: () => object;