Files
old-cto-as-you-go/CTOAsYouGo/node_modules/fast-glob/out/providers/transformers/entry.d.ts
2023-07-01 10:42:40 +02:00

9 lines
287 B
TypeScript

import Settings from '../../settings';
import { EntryTransformerFunction } from '../../types';
export default class EntryTransformer {
private readonly _settings;
constructor(_settings: Settings);
getTransformer(): EntryTransformerFunction;
private _transform;
}