Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

entry.d.ts 287B

12345678
  1. import Settings from '../../settings';
  2. import { EntryTransformerFunction } from '../../types';
  3. export default class EntryTransformer {
  4. private readonly _settings;
  5. constructor(_settings: Settings);
  6. getTransformer(): EntryTransformerFunction;
  7. private _transform;
  8. }