add JSR support

This commit is contained in:
2025-09-06 18:01:21 -04:00
parent 3cb2f15d25
commit d11e4e963c
3 changed files with 9 additions and 26 deletions

View File

@@ -1,28 +1,6 @@
/**
* fluent-dom-esm v1.1.0
*
* Fluent DOM Manipulation, adapted to ESM and cranked up to v1.1(.0).
*
* https://git.itsericwoodward.com/eric/fluent-dom-esm
*
* v1.1.0 Copyright (c) 2025 Eric Woodward
* Original copyright (c) 2009 Tommy Montgomery (https://glacius.tmont.com/articles/fluent-dom-manipulation-in-javascript)
*
* Released under the WTFPL (Do What the Fuck You Want to Public License)
*
* @author Eric Woodward (v1.1.0 update)
* @author Tommy Montgomery (original)
* @license http://sam.zoy.org/wtfpl/
*/
import { FluentDomObject } from './fluent-dom-esm.types';
/**
* IIFE that creates the FluentDomObject as default export
*/
declare const _default: {
(node: HTMLElement): any;
/**
* Creates a new HTML element which is wrapped in a FluentDomObject and returned
*/
create: (tagName: string) => any;
c(tagName: string): any;
};
declare const _default: FluentDomObject;
export default _default;