mirror of
https://github.com/itdoginfo/podkop.git
synced 2026-01-29 22:00:42 +03:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
'use strict';
|
|
'require baseclass';
|
|
'require fs';
|
|
'require uci';
|
|
'require ui';
|
|
|
|
if (typeof structuredClone !== 'function')
|
|
globalThis.structuredClone = (obj) => JSON.parse(JSON.stringify(obj));
|
|
|
|
export * from './validators';
|
|
export * from './helpers';
|
|
export * from './podkop';
|
|
export * from './constants';
|