File size: 327 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 | 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;
|