workflow_launcher/node_modules/sanitize-filename/index.d.ts

9 lines
153 B
TypeScript
Raw Normal View History

2024-03-12 07:57:14 -04:00
declare function sanitize(
input: string,
options?: {
replacement?: string | ((substring: string) => string);
}
): string;
export = sanitize;