5 lines
145 B
TypeScript
5 lines
145 B
TypeScript
|
|
import { IUNCore } from './lib/ddSdk';
|
||
|
|
import * as otherApi from './lib/otherApi';
|
||
|
|
declare const core: typeof otherApi & IUNCore;
|
||
|
|
export = core;
|