File size: 1,254 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
declare module 'database' {
export const db: {
serialize<T>(cb: () => T): T
run(
statement: string,
args: Record<string, any>,
onComplete: (this: { lastID: string }, error?: Error) => void
): void
}
}
declare module 'db' {
export default function deleteFromDb(arg: any, ...args: any[]): Promise<void>
}
declare module 'auth' {
export function validator<TFn extends (...args: any[]) => any>(fn: TFn): TFn
export function another<TFn extends (...args: any[]) => any>(fn: TFn): TFn
}
declare module 'anything' {
const ANYTHING: any
export default ANYTHING
}
declare module 'foo' {
const f: any
export default f
export const f1: any
export const f2: any
}
declare module 'components' {
import React from 'react'
export function Button(
props: {
action: () => Promise<any>
} & React.ComponentProps<'button'>
): React.ReactNode
export function Form(
props: React.PropsWithChildren<{ action: () => Promise<any> }>
): React.ReactNode
export function Client(props: Record<string, any>): React.ReactNode
}
declare module 'navigation' {
export function redirect(href: string): void
}
// Some tests generate `data:text/javascript,...` imports
declare module 'data:text/*'
|