liquidjs
Version:
A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support.
7 lines (6 loc) • 614 B
TypeScript
import { FilterImpl } from '../template';
export declare function date(this: FilterImpl, v: string | Date, format?: string, timezoneOffset?: number | string): string | Date;
export declare function date_to_xmlschema(this: FilterImpl, v: string | Date): string | Date;
export declare function date_to_rfc822(this: FilterImpl, v: string | Date): string | Date;
export declare function date_to_string(this: FilterImpl, v: string | Date, type?: string, style?: string): string | Date;
export declare function date_to_long_string(this: FilterImpl, v: string | Date, type?: string, style?: string): string | Date;