@lark-project/cli
Version:
飞书项目插件开发工具
13 lines (12 loc) • 360 B
TypeScript
import { ScriptCommand } from '../../types';
interface IInitPayload {
name: string;
pluginId?: string;
pluginSecret?: string;
options: any;
}
declare class Project {
static init({ name, pluginId, pluginSecret, options }: IInitPayload): Promise<void>;
static run(command: ScriptCommand, args?: string[]): void;
}
export default Project;