mirror of https://github.com/sveltejs/svelte
22 lines
404 B
22 lines
404 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);
|
|
}
|
|
|
|
class Component extends SvelteComponent {
|
|
constructor(options) {
|
|
super();
|
|
init(this, options, null, null, safe_not_equal, { foo: 0 });
|
|
}
|
|
|
|
get foo() {
|
|
return foo;
|
|
}
|
|
}
|
|
|
|
export default Component;
|
|
export { SOME_CONSTANT }; |