9 lines
160 B
TypeScript
Raw Normal View History

2023-09-21 01:32:11 +08:00
import type { Utils as UtilsType } from './utils/index.d';
declare global {
export namespace Editor {
export const Utils = UtilsType;
}
}