@poupe/vue
Version:
Vue component library for Poupe UI framework with theme customization and accessibility support
14 lines • 672 B
text/typescript
/** @returns array of required third-party tailwind plugins */
declare const tailwindPlugins: any[];
/**
* @returns the `@poupe/vue` `dist/` directory that `contentGlobs()` scans.
* `..` against the module URL skips two segments at once
* (`index.mjs` + the per-subpath folder) — obuild emits this file at
* `dist/config/index.mjs`, so `..` lands on `dist/`. `fileURLToPath`
* keeps the path portable on Windows.
*/
declare const contentPath: () => string;
/** @returns the glob patterns needed by tailwindcss to scan classes */
declare const contentGlobs: () => string[];
export { contentGlobs, contentPath, tailwindPlugins };
//# sourceMappingURL=index.d.mts.map