UNPKG

@lark-project/cli

Version:

飞书项目插件开发工具

14 lines (13 loc) 748 B
export * from './devServer'; export * from './plugin'; export * from './crypto'; export * from './template'; export declare const error: (msg: string) => never; export declare const stop: (port?: number) => Promise<void>; export declare const clearConsole: () => void; /** 添加加载动画 */ export declare const wrapOraLoading: <R, T extends (...rest: unknown[]) => Promise<R> = any>(fn: T, message: string, ...args: unknown[]) => Promise<R>; export declare const set: (obj: object, path: string, value: unknown) => object; export declare const get: (obj: object, path: string, defaultValue?: unknown) => unknown; export declare const checkLatestVersion: () => Promise<void>; export declare function compileTSModule(resolvedPath: string): any;