mirror of
https://github.com/moltbot/moltbot.git
synced 2026-03-08 06:54:24 +00:00
10 lines
327 B
TypeScript
10 lines
327 B
TypeScript
export type ChangedScope = {
|
|
runNode: boolean;
|
|
runMacos: boolean;
|
|
runAndroid: boolean;
|
|
};
|
|
|
|
export function detectChangedScope(changedPaths: string[]): ChangedScope;
|
|
export function listChangedPaths(base: string, head?: string): string[];
|
|
export function writeGitHubOutput(scope: ChangedScope, outputPath?: string): void;
|