@deep-foundation/deeplinks
Version:
[](https://www.npmjs.com/package/@deep-foundation/deeplinks) [](https://gitpod.io/#https://github.com/deep-fo
14 lines (13 loc) • 372 B
TypeScript
export interface IExportTypeOptions {
name: string;
version: string;
}
export interface IImportTypeOptions {
name: string;
version: string;
}
export declare const DeeplinksPackerApi: () => {
register: () => void;
exportType: (option: IExportTypeOptions) => Promise<any> | any;
importType: (option: IImportTypeOptions) => Promise<any> | any;
};