Files
bunext/dist/utils/log.d.ts
T
2026-03-24 07:18:57 +01:00

11 lines
346 B
TypeScript

export declare const log: {
info: (msg: string, log?: any) => void;
success: (msg: string, log?: any) => void;
error: (msg: string | Error, log?: any) => void;
warn: (msg: string, log?: any) => void;
build: (msg: string) => void;
watch: (msg: string) => void;
server: (url: string) => void;
banner: () => void;
};