UNPKG

liquidjs

Version:

A simple, expressive and safe Shopify / Github Pages compatible template engine in pure JavaScript.

9 lines (8 loc) 361 B
/** * Crypto related filters * * Implements sha256 and hmac_sha256 filters for Shopify compatibility */ import { FilterImpl } from '../template'; export declare function sha256(this: FilterImpl, value: unknown): string | Promise<string>; export declare function hmac_sha256(this: FilterImpl, value: unknown, key: unknown): string | Promise<string>;