mirror of https://github.com/sveltejs/svelte
33 lines
562 B
33 lines
562 B
/* generated by Svelte vX.Y.Z */
|
|
import { SvelteComponent as SvelteComponent_1, init, noop, safe_not_equal } from "svelte/internal";
|
|
|
|
function create_fragment($$, ctx) {
|
|
return {
|
|
c: noop,
|
|
m: noop,
|
|
p: noop,
|
|
i: noop,
|
|
o: noop,
|
|
d: noop
|
|
};
|
|
}
|
|
|
|
const SOME_CONSTANT = 42;
|
|
|
|
function foo(bar) {
|
|
console.log(bar);
|
|
}
|
|
|
|
class SvelteComponent extends SvelteComponent_1 {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, null, create_fragment, safe_not_equal);
|
|
}
|
|
|
|
get foo() {
|
|
return foo;
|
|
}
|
|
}
|
|
|
|
export default SvelteComponent;
|
|
export { SOME_CONSTANT }; |