Welcome to mirror list, hosted at ThFree Co, Russian Federation.

entry.d.ts « transformers « providers « out « fast-glob « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1874a380ca0788779dba061ee0672467f4ed0155 (plain)
1
2
3
4
5
6
7
8
import Settings from '../../settings';
import { EntryTransformerFunction } from '../../types';
export default class EntryTransformer {
    private readonly _settings;
    constructor(_settings: Settings);
    getTransformer(): EntryTransformerFunction;
    private _transform;
}