GitHub Action
πŸš€ Auto-deploy from GitHub Actions
7b7bdab
raw
history blame contribute delete
177 Bytes
export type Callback = (
directory: string,
files: string[],
) => string | false | void;
export default function (
directory: string,
callback: Callback,
): string | void;