You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghost/e2e/types.d.ts

11 lines
375 B

declare module '@tryghost/logging' {
export function error(...args: unknown[]): void;
export function warn(...args: unknown[]): void;
export function info(...args: unknown[]): void;
export function debug(...args: unknown[]): void;
}
declare module '@tryghost/debug' {
function debug(namespace: string): (...args: unknown[]) => void;
export = debug;
}