Jensen-holm's picture
added baseline stuff for making this a flask app with tailwind
a63e09b
raw
history blame
287 Bytes
import Settings from '../../settings';
import { EntryTransformerFunction } from '../../types';
export default class EntryTransformer {
private readonly _settings;
constructor(_settings: Settings);
getTransformer(): EntryTransformerFunction;
private _transform;
}