13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
import _Selection from './Selection.svelte';
|
|
import _Option from './Option.svelte';
|
|
|
|
type SelectionType = typeof _Selection & {
|
|
Option: typeof _Option
|
|
}
|
|
|
|
const Selection = _Selection as SelectionType;
|
|
|
|
Selection.Option = _Option;
|
|
|
|
export { Selection }
|