@hel-demo/mono-libs
Version:
hel-mono demo libs
19 lines (14 loc) • 391 B
text/typescript
/**
* [hel-tip] 此文件由 mono-helper 脚本自动生成,无需修改
*/
import { exposeLib } from 'hel-lib-proxy';
import { APP_NAME } from '../configs/subApp';
import type { LibProperties } from './libProperties';
export const lib = exposeLib<LibProperties>(APP_NAME);
export const {
hello,
delay,
helloAsync,
} = lib;
export type Lib = LibProperties;
export default lib;