mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-19 08:42:52 +00:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import _debug from 'debug';
|
|
|
|
export * from './schema/types';
|
|
|
|
/**
|
|
* Dev helper
|
|
*/
|
|
export const debug = _debug('lowcode:mat');
|
|
export const enableDebug = () => _debug.enable('lowcode:*');
|
|
export const disableDebug = () => _debug.disable();
|