baseframe-js
Version:
Baseframe JS is a comprehensive suite of modular plugins and utilities designed for front-end development
8 lines (7 loc) • 345 B
TypeScript
import $be from 'base-elem-js';
import type { PluginBaseClass } from '../types';
import type { CashStatic } from 'cash-dom';
type Be = typeof $be;
type LibType = Be | CashStatic | JQueryStatic;
declare const libraryExtend: <T extends PluginBaseClass>(Plugins: T | T[], Library?: LibType, notify?: boolean) => void;
export default libraryExtend;