mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:39:29 +08:00
8 lines
279 B
Text
8 lines
279 B
Text
import Settings from '../../settings';
|
|
import { EntryTransformerFunction } from '../../types';
|
|
export default class EntryTransformer {
|
|
private readonly _settings;
|
|
constructor(_settings: Settings);
|
|
getTransformer(): EntryTransformerFunction;
|
|
private _transform;
|
|
}
|