mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
export interface IConfig {
|
|
onError(e: Error): void;
|
|
}
|
|
export declare const config: IConfig;
|
|
export declare const setConfig: (conf: Partial<IConfig>) => void;
|