mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
export default {
|
|
test: {
|
|
globals: true,
|
|
onConsoleLog(log: string, type: 'stdout' | 'stderr'): boolean | void {
|
|
// print only console.error
|
|
return type === 'stderr';
|
|
},
|
|
},
|
|
};
|