mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
Turns out `prettier-plugin-organize-imports` sorts imports differently than the old one so this will prevent spreading the change across multiple commits whenever we touch a file (and potentially introducing conflicts)
13 lines
508 B
TypeScript
13 lines
508 B
TypeScript
export { registerIconLibrary, unregisterIconLibrary } from './components/icon/library.js';
|
|
export { discover, startLoader, stopLoader } from './utilities/autoloader.js';
|
|
export { getBasePath, getKitCode, setBasePath, setKitCode } from './utilities/base-path.js';
|
|
export { registerTranslation } from './utilities/localize.js';
|
|
|
|
// Utilities
|
|
export * from './utilities/animation.js';
|
|
export * from './utilities/base-path.js';
|
|
export * from './utilities/form.js';
|
|
|
|
// Events
|
|
export * from './events/events.js';
|