@lark-project/cli
Version:
飞书项目插件开发工具
15 lines (14 loc) • 476 B
TypeScript
interface AuditOptions {
types?: string;
files?: string;
format?: 'text' | 'json';
}
/**
* Audit `window.JSSDK.<ns>.<method>(` calls against a types declaration file.
*
* Why native: bash + grep + awk + <<< heredoc is fast to read but not
* portable — Windows devs and agents that can't drop into bash can't run it.
* This command gives every agent the same audit in one command.
*/
export declare function auditJssdk(opts: AuditOptions): void;
export {};