mirror of https://github.com/sveltejs/svelte
26 lines
477 B
26 lines
477 B
/* generated by Svelte vX.Y.Z */
|
|
import { SvelteComponent, init, safe_not_equal } from "svelte/internal";
|
|
|
|
const SOME_CONSTANT = 42;
|
|
|
|
function foo(bar) {
|
|
console.log(bar);
|
|
}
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
return [foo];
|
|
}
|
|
|
|
class Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, instance, null, safe_not_equal, { foo: 0 });
|
|
}
|
|
|
|
get foo() {
|
|
return foo;
|
|
}
|
|
}
|
|
|
|
export default Component;
|
|
export { SOME_CONSTANT }; |