mirror of https://github.com/sveltejs/svelte
parent
e03bc2b346
commit
b47a232fa4
@ -0,0 +1,13 @@
|
|||||||
|
import { current_block } from '../../runtime.js';
|
||||||
|
|
||||||
|
/** @returns {import('#client').NormalBlock} */
|
||||||
|
export function create_block() {
|
||||||
|
return {
|
||||||
|
// dom
|
||||||
|
d: null,
|
||||||
|
// effect
|
||||||
|
e: null,
|
||||||
|
// parent
|
||||||
|
p: /** @type {import('#client').Block} */ (current_block)
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in new issue