@visulima/packem
Version:
A fast and modern bundler for Node.js and TypeScript.
17 lines (16 loc) • 439 B
text/typescript
/**
* @param css
* @param {object} options
* @param {boolean} [options.prepend]
* @param {boolean} [options.singleTag]
* @param {string} [options.container]
* @param {Record<string,string>} [options.attributes]
* @returns {void}
*/
declare const _default: (css: string, options: {
attributes?: Record<string, string>;
container?: string;
prepend?: boolean;
singleTag?: boolean;
}) => void;
export default _default;