5 lines
181 B
TypeScript
5 lines
181 B
TypeScript
import { writable } from "svelte/store";
|
|
import defaultCode from "./defaultCode.ts?raw";
|
|
|
|
/** the TypeScript code as seen in the editor */
|
|
export const code = writable(defaultCode); |