summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/escalade/sync/index.d.mts
blob: c023d37b286d1f16630ed054d492c027184dffc0 (plain)
1
2
3
4
5
6
7
8
9
export type Callback = (
	directory: string,
	files: string[],
) => string | false | void;

export default function (
	directory: string,
	callback: Callback,
): string | void;