mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 20:37:24 +00:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
export type Callback = (
|
|
directory: string,
|
|
files: string[],
|
|
) => string | false | void;
|
|
|
|
export default function (
|
|
directory: string,
|
|
callback: Callback,
|
|
): string | void;
|