summaryrefslogtreecommitdiffstats
path: root/src/webapp-old/src/global.d.ts
blob: 90ee84c2f058edbfbdbe7b777491b1c9582a0bbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import type {IsURLOptions} from "validator/lib/isURL";

declare global {
    namespace n4s {
        interface EnforceCustomMatchers<R> {
            isURL(str: string, options?: IsURLOptions): R;
        }
    }
}

export {};