gpreview
Version:
Preview Ghost themes locally without a full Ghost installation
17 lines • 472 B
TypeScript
import Handlebars from 'handlebars';
import { Post, TemplateData } from '../types';
interface TagsOptions {
hash?: {
separator?: string;
prefix?: string;
suffix?: string;
limit?: string | number;
from?: string | number;
to?: string | number;
};
}
export declare function tagsHelper(this: TemplateData & {
post?: Post;
}, options: TagsOptions): Handlebars.SafeString;
export {};
//# sourceMappingURL=tags.d.ts.map