13 lines
367 B
TypeScript
13 lines
367 B
TypeScript
// better scoped exports
|
|
import { resolve } from './classes.resolvedirective.js';
|
|
import { subscribe } from './classes.subscribedirective.js';
|
|
|
|
export {
|
|
resolve,
|
|
subscribe,
|
|
}
|
|
|
|
export { subscribeWithTemplate } from './classes.subscribewithtemplate.js';
|
|
|
|
export { until } from 'lit/directives/until.js';
|
|
export { asyncAppend } from 'lit/directives/async-append.js'; |