mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 19:36:44 +00:00
4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
|
export const error = (message: Error | string, ...args: any[]) => {
|
||
|
console.error(message, ...args);
|
||
|
};
|