UNPKG

gpreview

Version:

Preview Ghost themes locally without a full Ghost installation

17 lines 423 B
import type { Site, Post, Page } from '../types'; interface HandlebarsContext { post?: Post; page?: Page; site?: Site; '@site'?: Site; url?: string; } interface HandlebarsOptions { hash?: { absolute?: boolean; [key: string]: unknown; }; } export declare function urlHelper(this: HandlebarsContext, options: HandlebarsOptions): string; export {}; //# sourceMappingURL=url.d.ts.map