build: add precompiled CLI distribution
This commit is contained in:
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
import type { DeckMetadata } from './content.ts';
|
||||
interface DevOverflowAuditOptions {
|
||||
cwd?: string;
|
||||
debounceMs?: number;
|
||||
deck: DeckMetadata;
|
||||
output?: (line: string) => void;
|
||||
}
|
||||
export interface DevOverflowAuditController {
|
||||
close: () => Promise<void>;
|
||||
ready: Promise<void>;
|
||||
}
|
||||
export declare function startDevOverflowAudit(options: DevOverflowAuditOptions): DevOverflowAuditController;
|
||||
export {};
|
||||
Reference in New Issue
Block a user