@matthiesenxyz/astrolace
Version:
An easy way to use Shoelace.style within your Astro Project!
12 lines (9 loc) • 381 B
text/typescript
import { fileFactory } from '../utils/fileFactory.ts';
import { componentFile } from './components.ts';
import { typesFile } from './types.ts';
import { toolsFile } from './tools.ts';
const astrolaceDTS = fileFactory();
astrolaceDTS.addLines(typesFile);
astrolaceDTS.addLines(toolsFile);
astrolaceDTS.addLines(componentFile);
export const astrolaceDTSFile = astrolaceDTS.text();