gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
19 lines • 522 B
TypeScript
interface HandlebarsContext {
is_home?: boolean;
is_post?: boolean;
is_page?: boolean;
is_tag?: boolean;
is_author?: boolean;
is_private?: boolean;
pagination?: {
page: number;
[key: string]: unknown;
};
}
interface HandlebarsOptions {
fn: (context: unknown) => string;
inverse: (context: unknown) => string;
}
export declare function isHelper(this: HandlebarsContext, context: string, options: HandlebarsOptions): string;
export {};
//# sourceMappingURL=is.d.ts.map