UNPKG

@blameitonyourisp/blurrid

Version:

Generate and render blurred placeholders for lazy loaded images.

34 lines (28 loc) 953 B
// Copyright (c) 2023 James Reid. All rights reserved. // // This source code file is licensed under the terms of the MIT license, a copy // of which may be found in the LICENSE.md file in the root of this repository. // // For a template copy of the license see one of the following 3rd party sites: // - <https://opensource.org/licenses/MIT> // - <https://choosealicense.com/licenses/mit> // - <https://spdx.org/licenses/MIT> /** * @file Export dct compression methods. * @author James Reid */ // @ts-check // @@no-imports // @@no-body // @@exports export * from "./array-conversions.js" export * from "./BlurridDecoder.js" export * from "./BlurridEncoder.js" export * from "./BlurridMetadata.js" export * from "./builders.js" export * from "./colorspace-conversions.js" export * from "./consumers.js" export * from "./decode.js" export * from "./encode.js" export * from "./serialize.js" export * from "./SubsampleSelector.js"